1. Packages
  2. Azure Classic
  3. API Docs
  4. network
  5. NetworkManagerDeployment

We recommend using Azure Native.

Azure Classic v5.58.0 published on Saturday, Dec 2, 2023 by Pulumi

azure.network.NetworkManagerDeployment

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.58.0 published on Saturday, Dec 2, 2023 by Pulumi

    Manages a Network Manager Deployment.

    NOTE on Virtual Network Peering: 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

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West Europe",
        });
    
        var current = Azure.Core.GetSubscription.Invoke();
    
        var exampleNetworkManager = new Azure.Network.NetworkManager("exampleNetworkManager", new()
        {
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
            Scope = new Azure.Network.Inputs.NetworkManagerScopeArgs
            {
                SubscriptionIds = new[]
                {
                    current.Apply(getSubscriptionResult => getSubscriptionResult.Id),
                },
            },
            ScopeAccesses = new[]
            {
                "Connectivity",
                "SecurityAdmin",
            },
            Description = "example network manager",
        });
    
        var exampleNetworkManagerNetworkGroup = new Azure.Network.NetworkManagerNetworkGroup("exampleNetworkManagerNetworkGroup", new()
        {
            NetworkManagerId = exampleNetworkManager.Id,
        });
    
        var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new()
        {
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
            AddressSpaces = new[]
            {
                "10.0.0.0/16",
            },
            FlowTimeoutInMinutes = 10,
        });
    
        var exampleNetworkManagerConnectivityConfiguration = new Azure.Network.NetworkManagerConnectivityConfiguration("exampleNetworkManagerConnectivityConfiguration", new()
        {
            NetworkManagerId = exampleNetworkManager.Id,
            ConnectivityTopology = "HubAndSpoke",
            AppliesToGroups = new[]
            {
                new Azure.Network.Inputs.NetworkManagerConnectivityConfigurationAppliesToGroupArgs
                {
                    GroupConnectivity = "None",
                    NetworkGroupId = exampleNetworkManagerNetworkGroup.Id,
                },
            },
            Hub = new Azure.Network.Inputs.NetworkManagerConnectivityConfigurationHubArgs
            {
                ResourceId = exampleVirtualNetwork.Id,
                ResourceType = "Microsoft.Network/virtualNetworks",
            },
        });
    
        var exampleNetworkManagerDeployment = new Azure.Network.NetworkManagerDeployment("exampleNetworkManagerDeployment", new()
        {
            NetworkManagerId = exampleNetworkManager.Id,
            Location = "eastus",
            ScopeAccess = "Connectivity",
            ConfigurationIds = new[]
            {
                exampleNetworkManagerConnectivityConfiguration.Id,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		current, err := core.LookupSubscription(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		exampleNetworkManager, err := network.NewNetworkManager(ctx, "exampleNetworkManager", &network.NetworkManagerArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			Scope: &network.NetworkManagerScopeArgs{
    				SubscriptionIds: pulumi.StringArray{
    					*pulumi.String(current.Id),
    				},
    			},
    			ScopeAccesses: pulumi.StringArray{
    				pulumi.String("Connectivity"),
    				pulumi.String("SecurityAdmin"),
    			},
    			Description: pulumi.String("example network manager"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleNetworkManagerNetworkGroup, err := network.NewNetworkManagerNetworkGroup(ctx, "exampleNetworkManagerNetworkGroup", &network.NetworkManagerNetworkGroupArgs{
    			NetworkManagerId: exampleNetworkManager.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			AddressSpaces: pulumi.StringArray{
    				pulumi.String("10.0.0.0/16"),
    			},
    			FlowTimeoutInMinutes: pulumi.Int(10),
    		})
    		if err != nil {
    			return err
    		}
    		exampleNetworkManagerConnectivityConfiguration, err := network.NewNetworkManagerConnectivityConfiguration(ctx, "exampleNetworkManagerConnectivityConfiguration", &network.NetworkManagerConnectivityConfigurationArgs{
    			NetworkManagerId:     exampleNetworkManager.ID(),
    			ConnectivityTopology: pulumi.String("HubAndSpoke"),
    			AppliesToGroups: network.NetworkManagerConnectivityConfigurationAppliesToGroupArray{
    				&network.NetworkManagerConnectivityConfigurationAppliesToGroupArgs{
    					GroupConnectivity: pulumi.String("None"),
    					NetworkGroupId:    exampleNetworkManagerNetworkGroup.ID(),
    				},
    			},
    			Hub: &network.NetworkManagerConnectivityConfigurationHubArgs{
    				ResourceId:   exampleVirtualNetwork.ID(),
    				ResourceType: pulumi.String("Microsoft.Network/virtualNetworks"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewNetworkManagerDeployment(ctx, "exampleNetworkManagerDeployment", &network.NetworkManagerDeploymentArgs{
    			NetworkManagerId: exampleNetworkManager.ID(),
    			Location:         pulumi.String("eastus"),
    			ScopeAccess:      pulumi.String("Connectivity"),
    			ConfigurationIds: pulumi.StringArray{
    				exampleNetworkManagerConnectivityConfiguration.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.core.CoreFunctions;
    import com.pulumi.azure.core.inputs.GetSubscriptionArgs;
    import com.pulumi.azure.network.NetworkManager;
    import com.pulumi.azure.network.NetworkManagerArgs;
    import com.pulumi.azure.network.inputs.NetworkManagerScopeArgs;
    import com.pulumi.azure.network.NetworkManagerNetworkGroup;
    import com.pulumi.azure.network.NetworkManagerNetworkGroupArgs;
    import com.pulumi.azure.network.VirtualNetwork;
    import com.pulumi.azure.network.VirtualNetworkArgs;
    import com.pulumi.azure.network.NetworkManagerConnectivityConfiguration;
    import com.pulumi.azure.network.NetworkManagerConnectivityConfigurationArgs;
    import com.pulumi.azure.network.inputs.NetworkManagerConnectivityConfigurationAppliesToGroupArgs;
    import com.pulumi.azure.network.inputs.NetworkManagerConnectivityConfigurationHubArgs;
    import com.pulumi.azure.network.NetworkManagerDeployment;
    import com.pulumi.azure.network.NetworkManagerDeploymentArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            final var current = CoreFunctions.getSubscription();
    
            var exampleNetworkManager = new NetworkManager("exampleNetworkManager", NetworkManagerArgs.builder()        
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .scope(NetworkManagerScopeArgs.builder()
                    .subscriptionIds(current.applyValue(getSubscriptionResult -> getSubscriptionResult.id()))
                    .build())
                .scopeAccesses(            
                    "Connectivity",
                    "SecurityAdmin")
                .description("example network manager")
                .build());
    
            var exampleNetworkManagerNetworkGroup = new NetworkManagerNetworkGroup("exampleNetworkManagerNetworkGroup", NetworkManagerNetworkGroupArgs.builder()        
                .networkManagerId(exampleNetworkManager.id())
                .build());
    
            var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .addressSpaces("10.0.0.0/16")
                .flowTimeoutInMinutes(10)
                .build());
    
            var exampleNetworkManagerConnectivityConfiguration = new NetworkManagerConnectivityConfiguration("exampleNetworkManagerConnectivityConfiguration", NetworkManagerConnectivityConfigurationArgs.builder()        
                .networkManagerId(exampleNetworkManager.id())
                .connectivityTopology("HubAndSpoke")
                .appliesToGroups(NetworkManagerConnectivityConfigurationAppliesToGroupArgs.builder()
                    .groupConnectivity("None")
                    .networkGroupId(exampleNetworkManagerNetworkGroup.id())
                    .build())
                .hub(NetworkManagerConnectivityConfigurationHubArgs.builder()
                    .resourceId(exampleVirtualNetwork.id())
                    .resourceType("Microsoft.Network/virtualNetworks")
                    .build())
                .build());
    
            var exampleNetworkManagerDeployment = new NetworkManagerDeployment("exampleNetworkManagerDeployment", NetworkManagerDeploymentArgs.builder()        
                .networkManagerId(exampleNetworkManager.id())
                .location("eastus")
                .scopeAccess("Connectivity")
                .configurationIds(exampleNetworkManagerConnectivityConfiguration.id())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    current = azure.core.get_subscription()
    example_network_manager = azure.network.NetworkManager("exampleNetworkManager",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        scope=azure.network.NetworkManagerScopeArgs(
            subscription_ids=[current.id],
        ),
        scope_accesses=[
            "Connectivity",
            "SecurityAdmin",
        ],
        description="example network manager")
    example_network_manager_network_group = azure.network.NetworkManagerNetworkGroup("exampleNetworkManagerNetworkGroup", network_manager_id=example_network_manager.id)
    example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        address_spaces=["10.0.0.0/16"],
        flow_timeout_in_minutes=10)
    example_network_manager_connectivity_configuration = azure.network.NetworkManagerConnectivityConfiguration("exampleNetworkManagerConnectivityConfiguration",
        network_manager_id=example_network_manager.id,
        connectivity_topology="HubAndSpoke",
        applies_to_groups=[azure.network.NetworkManagerConnectivityConfigurationAppliesToGroupArgs(
            group_connectivity="None",
            network_group_id=example_network_manager_network_group.id,
        )],
        hub=azure.network.NetworkManagerConnectivityConfigurationHubArgs(
            resource_id=example_virtual_network.id,
            resource_type="Microsoft.Network/virtualNetworks",
        ))
    example_network_manager_deployment = azure.network.NetworkManagerDeployment("exampleNetworkManagerDeployment",
        network_manager_id=example_network_manager.id,
        location="eastus",
        scope_access="Connectivity",
        configuration_ids=[example_network_manager_connectivity_configuration.id])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const current = azure.core.getSubscription({});
    const exampleNetworkManager = new azure.network.NetworkManager("exampleNetworkManager", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        scope: {
            subscriptionIds: [current.then(current => current.id)],
        },
        scopeAccesses: [
            "Connectivity",
            "SecurityAdmin",
        ],
        description: "example network manager",
    });
    const exampleNetworkManagerNetworkGroup = new azure.network.NetworkManagerNetworkGroup("exampleNetworkManagerNetworkGroup", {networkManagerId: exampleNetworkManager.id});
    const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        addressSpaces: ["10.0.0.0/16"],
        flowTimeoutInMinutes: 10,
    });
    const exampleNetworkManagerConnectivityConfiguration = new azure.network.NetworkManagerConnectivityConfiguration("exampleNetworkManagerConnectivityConfiguration", {
        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("exampleNetworkManagerDeployment", {
        networkManagerId: exampleNetworkManager.id,
        location: "eastus",
        scopeAccess: "Connectivity",
        configurationIds: [exampleNetworkManagerConnectivityConfiguration.id],
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West Europe
      exampleNetworkManager:
        type: azure:network:NetworkManager
        properties:
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
          scope:
            subscriptionIds:
              - ${current.id}
          scopeAccesses:
            - Connectivity
            - SecurityAdmin
          description: example network manager
      exampleNetworkManagerNetworkGroup:
        type: azure:network:NetworkManagerNetworkGroup
        properties:
          networkManagerId: ${exampleNetworkManager.id}
      exampleVirtualNetwork:
        type: azure:network:VirtualNetwork
        properties:
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
          addressSpaces:
            - 10.0.0.0/16
          flowTimeoutInMinutes: 10
      exampleNetworkManagerConnectivityConfiguration:
        type: azure:network:NetworkManagerConnectivityConfiguration
        properties:
          networkManagerId: ${exampleNetworkManager.id}
          connectivityTopology: HubAndSpoke
          appliesToGroups:
            - groupConnectivity: None
              networkGroupId: ${exampleNetworkManagerNetworkGroup.id}
          hub:
            resourceId: ${exampleVirtualNetwork.id}
            resourceType: Microsoft.Network/virtualNetworks
      exampleNetworkManagerDeployment:
        type: azure:network:NetworkManagerDeployment
        properties:
          networkManagerId: ${exampleNetworkManager.id}
          location: eastus
          scopeAccess: Connectivity
          configurationIds:
            - ${exampleNetworkManagerConnectivityConfiguration.id}
    variables:
      current:
        fn::invoke:
          Function: azure:core:getSubscription
          Arguments: {}
    

    Create NetworkManagerDeployment Resource

    new NetworkManagerDeployment(name: string, args: NetworkManagerDeploymentArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkManagerDeployment(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 configuration_ids: Optional[Sequence[str]] = None,
                                 location: Optional[str] = None,
                                 network_manager_id: Optional[str] = None,
                                 scope_access: Optional[str] = None,
                                 triggers: Optional[Mapping[str, str]] = None)
    @overload
    def NetworkManagerDeployment(resource_name: str,
                                 args: NetworkManagerDeploymentArgs,
                                 opts: Optional[ResourceOptions] = None)
    func NewNetworkManagerDeployment(ctx *Context, name string, args NetworkManagerDeploymentArgs, opts ...ResourceOption) (*NetworkManagerDeployment, error)
    public NetworkManagerDeployment(string name, NetworkManagerDeploymentArgs args, CustomResourceOptions? opts = null)
    public NetworkManagerDeployment(String name, NetworkManagerDeploymentArgs args)
    public NetworkManagerDeployment(String name, NetworkManagerDeploymentArgs args, CustomResourceOptions options)
    
    type: azure:network:NetworkManagerDeployment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args NetworkManagerDeploymentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NetworkManagerDeploymentArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NetworkManagerDeploymentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkManagerDeploymentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkManagerDeploymentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    NetworkManagerDeployment Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The NetworkManagerDeployment resource accepts the following input properties:

    ConfigurationIds List<string>

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    NetworkManagerId string

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    ScopeAccess string

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    Location string

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    Triggers Dictionary<string, string>

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    ConfigurationIds []string

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    NetworkManagerId string

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    ScopeAccess string

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    Location string

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    Triggers map[string]string

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configurationIds List<String>

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    networkManagerId String

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scopeAccess String

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    location String

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    triggers Map<String,String>

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configurationIds string[]

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    networkManagerId string

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scopeAccess string

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    location string

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    triggers {[key: string]: string}

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configuration_ids Sequence[str]

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    network_manager_id str

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scope_access str

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    location str

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    triggers Mapping[str, str]

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configurationIds List<String>

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    networkManagerId String

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scopeAccess String

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    location String

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    triggers Map<String>

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NetworkManagerDeployment resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing NetworkManagerDeployment Resource

    Get an existing NetworkManagerDeployment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NetworkManagerDeploymentState, opts?: CustomResourceOptions): NetworkManagerDeployment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration_ids: Optional[Sequence[str]] = None,
            location: Optional[str] = None,
            network_manager_id: Optional[str] = None,
            scope_access: Optional[str] = None,
            triggers: Optional[Mapping[str, str]] = None) -> NetworkManagerDeployment
    func GetNetworkManagerDeployment(ctx *Context, name string, id IDInput, state *NetworkManagerDeploymentState, opts ...ResourceOption) (*NetworkManagerDeployment, error)
    public static NetworkManagerDeployment Get(string name, Input<string> id, NetworkManagerDeploymentState? state, CustomResourceOptions? opts = null)
    public static NetworkManagerDeployment get(String name, Output<String> id, NetworkManagerDeploymentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ConfigurationIds List<string>

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    Location string

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    NetworkManagerId string

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    ScopeAccess string

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    Triggers Dictionary<string, string>

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    ConfigurationIds []string

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    Location string

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    NetworkManagerId string

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    ScopeAccess string

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    Triggers map[string]string

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configurationIds List<String>

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    location String

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    networkManagerId String

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scopeAccess String

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    triggers Map<String,String>

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configurationIds string[]

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    location string

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    networkManagerId string

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scopeAccess string

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    triggers {[key: string]: string}

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configuration_ids Sequence[str]

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    location str

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    network_manager_id str

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scope_access str

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    triggers Mapping[str, str]

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    configurationIds List<String>

    A list of Network Manager Configuration IDs which should be aligned with scope_access.

    location String

    Specifies the location which the configurations will be deployed to. Changing this forces a new Network Manager Deployment to be created.

    networkManagerId String

    Specifies the ID of the Network Manager. Changing this forces a new Network Manager Deployment to be created.

    scopeAccess String

    Specifies the configuration deployment type. Possible values are Connectivity and SecurityAdmin. Changing this forces a new Network Manager Deployment to be created.

    triggers Map<String>

    A mapping of key values pairs that can be used to keep the deployment up with the Network Manager configurations and rules.

    Import

    Network Manager Deployment can be imported using the resource id, e.g.

     $ pulumi import azure:network/networkManagerDeployment:NetworkManagerDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Network/networkManagers/networkManager1/commit|eastus|Connectivity
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.58.0 published on Saturday, Dec 2, 2023 by Pulumi