import * as pulumi from "@pulumi/pulumi"; /** * Manages a Network Manager Deployment. * * > **Note:** Using Network Manager Deployment to deploy Connectivity Configuration may modify or delete existing Virtual Network Peering. At this time you should not use Network Peering resource in conjunction with Network Manager Deployment. Doing so may cause a conflict of Peering configurations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const current = azure.core.getSubscription({}); * const exampleNetworkManager = new azure.network.NetworkManager("example", { * name: "example-network-manager", * location: example.location, * resourceGroupName: example.name, * scope: { * subscriptionIds: [current.then(current => current.id)], * }, * scopeAccesses: [ * "Connectivity", * "SecurityAdmin", * ], * description: "example network manager", * }); * const exampleNetworkManagerNetworkGroup = new azure.network.NetworkManagerNetworkGroup("example", { * name: "example-group", * networkManagerId: exampleNetworkManager.id, * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-net", * location: example.location, * resourceGroupName: example.name, * addressSpaces: ["10.0.0.0/16"], * flowTimeoutInMinutes: 10, * }); * const exampleNetworkManagerConnectivityConfiguration = new azure.network.NetworkManagerConnectivityConfiguration("example", { * name: "example-connectivity-conf", * networkManagerId: exampleNetworkManager.id, * connectivityTopology: "HubAndSpoke", * appliesToGroups: [{ * groupConnectivity: "None", * networkGroupId: exampleNetworkManagerNetworkGroup.id, * }], * hub: { * resourceId: exampleVirtualNetwork.id, * resourceType: "Microsoft.Network/virtualNetworks", * }, * }); * const exampleNetworkManagerDeployment = new azure.network.NetworkManagerDeployment("example", { * networkManagerId: exampleNetworkManager.id, * location: "eastus", * scopeAccess: "Connectivity", * configurationIds: [exampleNetworkManagerConnectivityConfiguration.id], * }); * ``` * * ### Triggers) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * import * as std from "@pulumi/std"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const current = azure.core.getSubscription({}); * const exampleNetworkManager = new azure.network.NetworkManager("example", { * name: "example-network-manager", * location: example.location, * resourceGroupName: example.name, * scope: { * subscriptionIds: [current.then(current => current.id)], * }, * scopeAccesses: [ * "Connectivity", * "SecurityAdmin", * ], * description: "example network manager", * }); * const exampleNetworkManagerNetworkGroup = new azure.network.NetworkManagerNetworkGroup("example", { * name: "example-group", * networkManagerId: exampleNetworkManager.id, * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-net", * location: example.location, * resourceGroupName: example.name, * addressSpaces: ["10.0.0.0/16"], * flowTimeoutInMinutes: 10, * }); * const exampleNetworkManagerSecurityAdminConfiguration = new azure.network.NetworkManagerSecurityAdminConfiguration("example", { * name: "example-nmsac", * networkManagerId: exampleNetworkManager.id, * }); * const exampleNetworkManagerAdminRuleCollection = new azure.network.NetworkManagerAdminRuleCollection("example", { * name: "example-nmarc", * securityAdminConfigurationId: exampleNetworkManagerSecurityAdminConfiguration.id, * networkGroupIds: [exampleNetworkManagerNetworkGroup.id], * }); * const exampleNetworkManagerAdminRule = new azure.network.NetworkManagerAdminRule("example", { * name: "example-nmar", * adminRuleCollectionId: exampleNetworkManagerAdminRuleCollection.id, * action: "Deny", * description: "example", * direction: "Inbound", * priority: 1, * protocol: "Tcp", * sourcePortRanges: ["80"], * destinationPortRanges: ["80"], * sources: [{ * addressPrefixType: "ServiceTag", * addressPrefix: "Internet", * }], * destinations: [{ * addressPrefixType: "IPPrefix", * addressPrefix: "*", * }], * }); * const exampleNetworkManagerDeployment = new azure.network.NetworkManagerDeployment("example", { * networkManagerId: exampleNetworkManager.id, * location: "eastus", * scopeAccess: "SecurityAdmin", * configurationIds: [exampleNetworkManagerSecurityAdminConfiguration.id], * triggers: { * source_port_ranges: exampleNetworkManagerAdminRule.sourcePortRanges.apply(sourcePortRanges => std.joinOutput({ * separator: ",", * input: sourcePortRanges, * })).apply(invoke => invoke.result), * }, * }, { * dependsOn: [exampleNetworkManagerAdminRule], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Network Manager Deployment can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/networkManagerDeployment:NetworkManagerDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Network/networkManagers/networkManager1/commit|eastus|Connectivity * ``` */ export declare class NetworkManagerDeployment extends pulumi.CustomResource { /** * Get an existing NetworkManagerDeployment resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NetworkManagerDeploymentState, opts?: pulumi.CustomResourceOptions): NetworkManagerDeployment; /** * Returns true if the given object is an instance of NetworkManagerDeployment. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NetworkManagerDeployment; /** * A list of Network Manager Configuration IDs which should be aligned with `scopeAccess`. */ readonly configurationIds: pulumi.Output; /** * Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created. */ readonly location: pulumi.Output; /** * Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created. */ readonly networkManagerId: pulumi.Output; /** * Specifies the configuration deployment type. Possible values are `Connectivity`, `SecurityAdmin` and `Routing`. Changing this forces a new Network Manager Deployment to be created. */ readonly scopeAccess: pulumi.Output; /** * A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules. */ readonly triggers: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a NetworkManagerDeployment resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: NetworkManagerDeploymentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkManagerDeployment resources. */ export interface NetworkManagerDeploymentState { /** * A list of Network Manager Configuration IDs which should be aligned with `scopeAccess`. */ configurationIds?: pulumi.Input[]>; /** * Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created. */ location?: pulumi.Input; /** * Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created. */ networkManagerId?: pulumi.Input; /** * Specifies the configuration deployment type. Possible values are `Connectivity`, `SecurityAdmin` and `Routing`. Changing this forces a new Network Manager Deployment to be created. */ scopeAccess?: pulumi.Input; /** * A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules. */ triggers?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a NetworkManagerDeployment resource. */ export interface NetworkManagerDeploymentArgs { /** * A list of Network Manager Configuration IDs which should be aligned with `scopeAccess`. */ configurationIds: pulumi.Input[]>; /** * Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created. */ location?: pulumi.Input; /** * Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created. */ networkManagerId: pulumi.Input; /** * Specifies the configuration deployment type. Possible values are `Connectivity`, `SecurityAdmin` and `Routing`. Changing this forces a new Network Manager Deployment to be created. */ scopeAccess: pulumi.Input; /** * A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules. */ triggers?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }