1. Packages
  2. Azure Native
  3. API Docs
  4. managednetworkfabric
  5. NetworkFabricController
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.managednetworkfabric.NetworkFabricController

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    The Network Fabric Controller resource definition.

    Uses Azure REST API version 2023-06-15. In version 2.x of the Azure Native provider, it used API version 2023-02-01-preview.

    Other available API versions: 2023-02-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native managednetworkfabric [ApiVersion]. See the version guide for details.

    Example Usage

    NetworkFabricControllers_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var networkFabricController = new AzureNative.ManagedNetworkFabric.NetworkFabricController("networkFabricController", new()
        {
            Annotation = "annotation",
            InfrastructureExpressRouteConnections = new[]
            {
                new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
                {
                    ExpressRouteAuthorizationKey = "1234ABCD-0A1B-1234-5678-123456ABCDEF",
                    ExpressRouteCircuitId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
                },
            },
            Ipv4AddressSpace = "172.253.0.0/19",
            Ipv6AddressSpace = "::/60",
            IsWorkloadManagementNetworkEnabled = AzureNative.ManagedNetworkFabric.IsWorkloadManagementNetworkEnabled.True,
            Location = "eastus",
            ManagedResourceGroupConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.ManagedResourceGroupConfigurationArgs
            {
                Location = "eastus",
                Name = "managedResourceGroupName",
            },
            NetworkFabricControllerName = "example-networkController",
            NfcSku = AzureNative.ManagedNetworkFabric.NfcSku.Standard,
            ResourceGroupName = "example-rg",
            WorkloadExpressRouteConnections = new[]
            {
                new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
                {
                    ExpressRouteAuthorizationKey = "xxxxx",
                    ExpressRouteCircuitId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	managednetworkfabric "github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := managednetworkfabric.NewNetworkFabricController(ctx, "networkFabricController", &managednetworkfabric.NetworkFabricControllerArgs{
    			Annotation: pulumi.String("annotation"),
    			InfrastructureExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
    				&managednetworkfabric.ExpressRouteConnectionInformationArgs{
    					ExpressRouteAuthorizationKey: pulumi.String("1234ABCD-0A1B-1234-5678-123456ABCDEF"),
    					ExpressRouteCircuitId:        pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName"),
    				},
    			},
    			Ipv4AddressSpace:                   pulumi.String("172.253.0.0/19"),
    			Ipv6AddressSpace:                   pulumi.String("::/60"),
    			IsWorkloadManagementNetworkEnabled: pulumi.String(managednetworkfabric.IsWorkloadManagementNetworkEnabledTrue),
    			Location:                           pulumi.String("eastus"),
    			ManagedResourceGroupConfiguration: &managednetworkfabric.ManagedResourceGroupConfigurationArgs{
    				Location: pulumi.String("eastus"),
    				Name:     pulumi.String("managedResourceGroupName"),
    			},
    			NetworkFabricControllerName: pulumi.String("example-networkController"),
    			NfcSku:                      pulumi.String(managednetworkfabric.NfcSkuStandard),
    			ResourceGroupName:           pulumi.String("example-rg"),
    			WorkloadExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
    				&managednetworkfabric.ExpressRouteConnectionInformationArgs{
    					ExpressRouteAuthorizationKey: pulumi.String("xxxxx"),
    					ExpressRouteCircuitId:        pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName"),
    				},
    			},
    		})
    		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.azurenative.managednetworkfabric.NetworkFabricController;
    import com.pulumi.azurenative.managednetworkfabric.NetworkFabricControllerArgs;
    import com.pulumi.azurenative.managednetworkfabric.inputs.ExpressRouteConnectionInformationArgs;
    import com.pulumi.azurenative.managednetworkfabric.inputs.ManagedResourceGroupConfigurationArgs;
    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 networkFabricController = new NetworkFabricController("networkFabricController", NetworkFabricControllerArgs.builder()
                .annotation("annotation")
                .infrastructureExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
                    .expressRouteAuthorizationKey("1234ABCD-0A1B-1234-5678-123456ABCDEF")
                    .expressRouteCircuitId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName")
                    .build())
                .ipv4AddressSpace("172.253.0.0/19")
                .ipv6AddressSpace("::/60")
                .isWorkloadManagementNetworkEnabled("True")
                .location("eastus")
                .managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
                    .location("eastus")
                    .name("managedResourceGroupName")
                    .build())
                .networkFabricControllerName("example-networkController")
                .nfcSku("Standard")
                .resourceGroupName("example-rg")
                .workloadExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
                    .expressRouteAuthorizationKey("xxxxx")
                    .expressRouteCircuitId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName")
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const networkFabricController = new azure_native.managednetworkfabric.NetworkFabricController("networkFabricController", {
        annotation: "annotation",
        infrastructureExpressRouteConnections: [{
            expressRouteAuthorizationKey: "1234ABCD-0A1B-1234-5678-123456ABCDEF",
            expressRouteCircuitId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
        }],
        ipv4AddressSpace: "172.253.0.0/19",
        ipv6AddressSpace: "::/60",
        isWorkloadManagementNetworkEnabled: azure_native.managednetworkfabric.IsWorkloadManagementNetworkEnabled.True,
        location: "eastus",
        managedResourceGroupConfiguration: {
            location: "eastus",
            name: "managedResourceGroupName",
        },
        networkFabricControllerName: "example-networkController",
        nfcSku: azure_native.managednetworkfabric.NfcSku.Standard,
        resourceGroupName: "example-rg",
        workloadExpressRouteConnections: [{
            expressRouteAuthorizationKey: "xxxxx",
            expressRouteCircuitId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
        }],
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    network_fabric_controller = azure_native.managednetworkfabric.NetworkFabricController("networkFabricController",
        annotation="annotation",
        infrastructure_express_route_connections=[{
            "express_route_authorization_key": "1234ABCD-0A1B-1234-5678-123456ABCDEF",
            "express_route_circuit_id": "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
        }],
        ipv4_address_space="172.253.0.0/19",
        ipv6_address_space="::/60",
        is_workload_management_network_enabled=azure_native.managednetworkfabric.IsWorkloadManagementNetworkEnabled.TRUE,
        location="eastus",
        managed_resource_group_configuration={
            "location": "eastus",
            "name": "managedResourceGroupName",
        },
        network_fabric_controller_name="example-networkController",
        nfc_sku=azure_native.managednetworkfabric.NfcSku.STANDARD,
        resource_group_name="example-rg",
        workload_express_route_connections=[{
            "express_route_authorization_key": "xxxxx",
            "express_route_circuit_id": "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
        }])
    
    resources:
      networkFabricController:
        type: azure-native:managednetworkfabric:NetworkFabricController
        properties:
          annotation: annotation
          infrastructureExpressRouteConnections:
            - expressRouteAuthorizationKey: 1234ABCD-0A1B-1234-5678-123456ABCDEF
              expressRouteCircuitId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName
          ipv4AddressSpace: 172.253.0.0/19
          ipv6AddressSpace: ::/60
          isWorkloadManagementNetworkEnabled: True
          location: eastus
          managedResourceGroupConfiguration:
            location: eastus
            name: managedResourceGroupName
          networkFabricControllerName: example-networkController
          nfcSku: Standard
          resourceGroupName: example-rg
          workloadExpressRouteConnections:
            - expressRouteAuthorizationKey: xxxxx
              expressRouteCircuitId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourceGroups/example-rg/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName
    

    Create NetworkFabricController Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NetworkFabricController(name: string, args: NetworkFabricControllerArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkFabricController(resource_name: str,
                                args: NetworkFabricControllerArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkFabricController(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                resource_group_name: Optional[str] = None,
                                annotation: Optional[str] = None,
                                infrastructure_express_route_connections: Optional[Sequence[ExpressRouteConnectionInformationArgs]] = None,
                                ipv4_address_space: Optional[str] = None,
                                ipv6_address_space: Optional[str] = None,
                                is_workload_management_network_enabled: Optional[Union[str, IsWorkloadManagementNetworkEnabled]] = None,
                                location: Optional[str] = None,
                                managed_resource_group_configuration: Optional[ManagedResourceGroupConfigurationArgs] = None,
                                network_fabric_controller_name: Optional[str] = None,
                                nfc_sku: Optional[Union[str, NfcSku]] = None,
                                tags: Optional[Mapping[str, str]] = None,
                                workload_express_route_connections: Optional[Sequence[ExpressRouteConnectionInformationArgs]] = None)
    func NewNetworkFabricController(ctx *Context, name string, args NetworkFabricControllerArgs, opts ...ResourceOption) (*NetworkFabricController, error)
    public NetworkFabricController(string name, NetworkFabricControllerArgs args, CustomResourceOptions? opts = null)
    public NetworkFabricController(String name, NetworkFabricControllerArgs args)
    public NetworkFabricController(String name, NetworkFabricControllerArgs args, CustomResourceOptions options)
    
    type: azure-native:managednetworkfabric:NetworkFabricController
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NetworkFabricControllerArgs
    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 NetworkFabricControllerArgs
    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 NetworkFabricControllerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkFabricControllerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkFabricControllerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var networkFabricControllerResource = new AzureNative.ManagedNetworkFabric.NetworkFabricController("networkFabricControllerResource", new()
    {
        ResourceGroupName = "string",
        Annotation = "string",
        InfrastructureExpressRouteConnections = new[]
        {
            new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
            {
                ExpressRouteAuthorizationKey = "string",
                ExpressRouteCircuitId = "string",
            },
        },
        Ipv4AddressSpace = "string",
        Ipv6AddressSpace = "string",
        IsWorkloadManagementNetworkEnabled = "string",
        Location = "string",
        ManagedResourceGroupConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.ManagedResourceGroupConfigurationArgs
        {
            Location = "string",
            Name = "string",
        },
        NetworkFabricControllerName = "string",
        NfcSku = "string",
        Tags = 
        {
            { "string", "string" },
        },
        WorkloadExpressRouteConnections = new[]
        {
            new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
            {
                ExpressRouteAuthorizationKey = "string",
                ExpressRouteCircuitId = "string",
            },
        },
    });
    
    example, err := managednetworkfabric.NewNetworkFabricController(ctx, "networkFabricControllerResource", &managednetworkfabric.NetworkFabricControllerArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Annotation:        pulumi.String("string"),
    	InfrastructureExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
    		&managednetworkfabric.ExpressRouteConnectionInformationArgs{
    			ExpressRouteAuthorizationKey: pulumi.String("string"),
    			ExpressRouteCircuitId:        pulumi.String("string"),
    		},
    	},
    	Ipv4AddressSpace:                   pulumi.String("string"),
    	Ipv6AddressSpace:                   pulumi.String("string"),
    	IsWorkloadManagementNetworkEnabled: pulumi.String("string"),
    	Location:                           pulumi.String("string"),
    	ManagedResourceGroupConfiguration: &managednetworkfabric.ManagedResourceGroupConfigurationArgs{
    		Location: pulumi.String("string"),
    		Name:     pulumi.String("string"),
    	},
    	NetworkFabricControllerName: pulumi.String("string"),
    	NfcSku:                      pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	WorkloadExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
    		&managednetworkfabric.ExpressRouteConnectionInformationArgs{
    			ExpressRouteAuthorizationKey: pulumi.String("string"),
    			ExpressRouteCircuitId:        pulumi.String("string"),
    		},
    	},
    })
    
    var networkFabricControllerResource = new NetworkFabricController("networkFabricControllerResource", NetworkFabricControllerArgs.builder()
        .resourceGroupName("string")
        .annotation("string")
        .infrastructureExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
            .expressRouteAuthorizationKey("string")
            .expressRouteCircuitId("string")
            .build())
        .ipv4AddressSpace("string")
        .ipv6AddressSpace("string")
        .isWorkloadManagementNetworkEnabled("string")
        .location("string")
        .managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
            .location("string")
            .name("string")
            .build())
        .networkFabricControllerName("string")
        .nfcSku("string")
        .tags(Map.of("string", "string"))
        .workloadExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
            .expressRouteAuthorizationKey("string")
            .expressRouteCircuitId("string")
            .build())
        .build());
    
    network_fabric_controller_resource = azure_native.managednetworkfabric.NetworkFabricController("networkFabricControllerResource",
        resource_group_name="string",
        annotation="string",
        infrastructure_express_route_connections=[{
            "express_route_authorization_key": "string",
            "express_route_circuit_id": "string",
        }],
        ipv4_address_space="string",
        ipv6_address_space="string",
        is_workload_management_network_enabled="string",
        location="string",
        managed_resource_group_configuration={
            "location": "string",
            "name": "string",
        },
        network_fabric_controller_name="string",
        nfc_sku="string",
        tags={
            "string": "string",
        },
        workload_express_route_connections=[{
            "express_route_authorization_key": "string",
            "express_route_circuit_id": "string",
        }])
    
    const networkFabricControllerResource = new azure_native.managednetworkfabric.NetworkFabricController("networkFabricControllerResource", {
        resourceGroupName: "string",
        annotation: "string",
        infrastructureExpressRouteConnections: [{
            expressRouteAuthorizationKey: "string",
            expressRouteCircuitId: "string",
        }],
        ipv4AddressSpace: "string",
        ipv6AddressSpace: "string",
        isWorkloadManagementNetworkEnabled: "string",
        location: "string",
        managedResourceGroupConfiguration: {
            location: "string",
            name: "string",
        },
        networkFabricControllerName: "string",
        nfcSku: "string",
        tags: {
            string: "string",
        },
        workloadExpressRouteConnections: [{
            expressRouteAuthorizationKey: "string",
            expressRouteCircuitId: "string",
        }],
    });
    
    type: azure-native:managednetworkfabric:NetworkFabricController
    properties:
        annotation: string
        infrastructureExpressRouteConnections:
            - expressRouteAuthorizationKey: string
              expressRouteCircuitId: string
        ipv4AddressSpace: string
        ipv6AddressSpace: string
        isWorkloadManagementNetworkEnabled: string
        location: string
        managedResourceGroupConfiguration:
            location: string
            name: string
        networkFabricControllerName: string
        nfcSku: string
        resourceGroupName: string
        tags:
            string: string
        workloadExpressRouteConnections:
            - expressRouteAuthorizationKey: string
              expressRouteCircuitId: string
    

    NetworkFabricController Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NetworkFabricController resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Annotation string
    Switch configuration description.
    InfrastructureExpressRouteConnections List<Pulumi.AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformation>
    As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
    Ipv4AddressSpace string
    IPv4 Network Fabric Controller Address Space.
    Ipv6AddressSpace string
    IPv6 Network Fabric Controller Address Space.
    IsWorkloadManagementNetworkEnabled string | Pulumi.AzureNative.ManagedNetworkFabric.IsWorkloadManagementNetworkEnabled
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
    Location string
    The geo-location where the resource lives
    ManagedResourceGroupConfiguration Pulumi.AzureNative.ManagedNetworkFabric.Inputs.ManagedResourceGroupConfiguration
    Managed Resource Group configuration properties.
    NetworkFabricControllerName string
    Name of the Network Fabric Controller.
    NfcSku string | Pulumi.AzureNative.ManagedNetworkFabric.NfcSku
    Network Fabric Controller SKU.
    Tags Dictionary<string, string>
    Resource tags.
    WorkloadExpressRouteConnections List<Pulumi.AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformation>
    As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Annotation string
    Switch configuration description.
    InfrastructureExpressRouteConnections []ExpressRouteConnectionInformationArgs
    As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
    Ipv4AddressSpace string
    IPv4 Network Fabric Controller Address Space.
    Ipv6AddressSpace string
    IPv6 Network Fabric Controller Address Space.
    IsWorkloadManagementNetworkEnabled string | IsWorkloadManagementNetworkEnabled
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
    Location string
    The geo-location where the resource lives
    ManagedResourceGroupConfiguration ManagedResourceGroupConfigurationArgs
    Managed Resource Group configuration properties.
    NetworkFabricControllerName string
    Name of the Network Fabric Controller.
    NfcSku string | NfcSku
    Network Fabric Controller SKU.
    Tags map[string]string
    Resource tags.
    WorkloadExpressRouteConnections []ExpressRouteConnectionInformationArgs
    As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    annotation String
    Switch configuration description.
    infrastructureExpressRouteConnections List<ExpressRouteConnectionInformation>
    As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
    ipv4AddressSpace String
    IPv4 Network Fabric Controller Address Space.
    ipv6AddressSpace String
    IPv6 Network Fabric Controller Address Space.
    isWorkloadManagementNetworkEnabled String | IsWorkloadManagementNetworkEnabled
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
    location String
    The geo-location where the resource lives
    managedResourceGroupConfiguration ManagedResourceGroupConfiguration
    Managed Resource Group configuration properties.
    networkFabricControllerName String
    Name of the Network Fabric Controller.
    nfcSku String | NfcSku
    Network Fabric Controller SKU.
    tags Map<String,String>
    Resource tags.
    workloadExpressRouteConnections List<ExpressRouteConnectionInformation>
    As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    annotation string
    Switch configuration description.
    infrastructureExpressRouteConnections ExpressRouteConnectionInformation[]
    As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
    ipv4AddressSpace string
    IPv4 Network Fabric Controller Address Space.
    ipv6AddressSpace string
    IPv6 Network Fabric Controller Address Space.
    isWorkloadManagementNetworkEnabled string | IsWorkloadManagementNetworkEnabled
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
    location string
    The geo-location where the resource lives
    managedResourceGroupConfiguration ManagedResourceGroupConfiguration
    Managed Resource Group configuration properties.
    networkFabricControllerName string
    Name of the Network Fabric Controller.
    nfcSku string | NfcSku
    Network Fabric Controller SKU.
    tags {[key: string]: string}
    Resource tags.
    workloadExpressRouteConnections ExpressRouteConnectionInformation[]
    As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    annotation str
    Switch configuration description.
    infrastructure_express_route_connections Sequence[ExpressRouteConnectionInformationArgs]
    As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
    ipv4_address_space str
    IPv4 Network Fabric Controller Address Space.
    ipv6_address_space str
    IPv6 Network Fabric Controller Address Space.
    is_workload_management_network_enabled str | IsWorkloadManagementNetworkEnabled
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
    location str
    The geo-location where the resource lives
    managed_resource_group_configuration ManagedResourceGroupConfigurationArgs
    Managed Resource Group configuration properties.
    network_fabric_controller_name str
    Name of the Network Fabric Controller.
    nfc_sku str | NfcSku
    Network Fabric Controller SKU.
    tags Mapping[str, str]
    Resource tags.
    workload_express_route_connections Sequence[ExpressRouteConnectionInformationArgs]
    As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    annotation String
    Switch configuration description.
    infrastructureExpressRouteConnections List<Property Map>
    As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
    ipv4AddressSpace String
    IPv4 Network Fabric Controller Address Space.
    ipv6AddressSpace String
    IPv6 Network Fabric Controller Address Space.
    isWorkloadManagementNetworkEnabled String | "True" | "False"
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
    location String
    The geo-location where the resource lives
    managedResourceGroupConfiguration Property Map
    Managed Resource Group configuration properties.
    networkFabricControllerName String
    Name of the Network Fabric Controller.
    nfcSku String | "Basic" | "Standard" | "HighPerformance"
    Network Fabric Controller SKU.
    tags Map<String>
    Resource tags.
    workloadExpressRouteConnections List<Property Map>
    As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    InfrastructureServices Pulumi.AzureNative.ManagedNetworkFabric.Outputs.ControllerServicesResponse
    InfrastructureServices IP ranges.
    Name string
    The name of the resource
    NetworkFabricIds List<string>
    The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
    ProvisioningState string
    Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
    SystemData Pulumi.AzureNative.ManagedNetworkFabric.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TenantInternetGatewayIds List<string>
    List of tenant InternetGateway resource IDs
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    WorkloadManagementNetwork bool
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints. This is used for the backward compatibility.
    WorkloadServices Pulumi.AzureNative.ManagedNetworkFabric.Outputs.ControllerServicesResponse
    WorkloadServices IP ranges.
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    InfrastructureServices ControllerServicesResponse
    InfrastructureServices IP ranges.
    Name string
    The name of the resource
    NetworkFabricIds []string
    The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
    ProvisioningState string
    Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TenantInternetGatewayIds []string
    List of tenant InternetGateway resource IDs
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    WorkloadManagementNetwork bool
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints. This is used for the backward compatibility.
    WorkloadServices ControllerServicesResponse
    WorkloadServices IP ranges.
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    infrastructureServices ControllerServicesResponse
    InfrastructureServices IP ranges.
    name String
    The name of the resource
    networkFabricIds List<String>
    The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
    provisioningState String
    Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenantInternetGatewayIds List<String>
    List of tenant InternetGateway resource IDs
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    workloadManagementNetwork Boolean
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints. This is used for the backward compatibility.
    workloadServices ControllerServicesResponse
    WorkloadServices IP ranges.
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    infrastructureServices ControllerServicesResponse
    InfrastructureServices IP ranges.
    name string
    The name of the resource
    networkFabricIds string[]
    The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
    provisioningState string
    Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenantInternetGatewayIds string[]
    List of tenant InternetGateway resource IDs
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    workloadManagementNetwork boolean
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints. This is used for the backward compatibility.
    workloadServices ControllerServicesResponse
    WorkloadServices IP ranges.
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    infrastructure_services ControllerServicesResponse
    InfrastructureServices IP ranges.
    name str
    The name of the resource
    network_fabric_ids Sequence[str]
    The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
    provisioning_state str
    Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenant_internet_gateway_ids Sequence[str]
    List of tenant InternetGateway resource IDs
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    workload_management_network bool
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints. This is used for the backward compatibility.
    workload_services ControllerServicesResponse
    WorkloadServices IP ranges.
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    infrastructureServices Property Map
    InfrastructureServices IP ranges.
    name String
    The name of the resource
    networkFabricIds List<String>
    The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
    provisioningState String
    Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenantInternetGatewayIds List<String>
    List of tenant InternetGateway resource IDs
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    workloadManagementNetwork Boolean
    A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints. This is used for the backward compatibility.
    workloadServices Property Map
    WorkloadServices IP ranges.

    Supporting Types

    ControllerServicesResponse, ControllerServicesResponseArgs

    Ipv4AddressSpaces List<string>
    The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
    Ipv6AddressSpaces List<string>
    The IPv6 is not supported right now.
    Ipv4AddressSpaces []string
    The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
    Ipv6AddressSpaces []string
    The IPv6 is not supported right now.
    ipv4AddressSpaces List<String>
    The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
    ipv6AddressSpaces List<String>
    The IPv6 is not supported right now.
    ipv4AddressSpaces string[]
    The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
    ipv6AddressSpaces string[]
    The IPv6 is not supported right now.
    ipv4_address_spaces Sequence[str]
    The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
    ipv6_address_spaces Sequence[str]
    The IPv6 is not supported right now.
    ipv4AddressSpaces List<String>
    The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
    ipv6AddressSpaces List<String>
    The IPv6 is not supported right now.

    ExpressRouteConnectionInformation, ExpressRouteConnectionInformationArgs

    ExpressRouteAuthorizationKey string
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    ExpressRouteCircuitId string
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    ExpressRouteAuthorizationKey string
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    ExpressRouteCircuitId string
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    expressRouteAuthorizationKey String
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    expressRouteCircuitId String
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    expressRouteAuthorizationKey string
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    expressRouteCircuitId string
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    express_route_authorization_key str
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    express_route_circuit_id str
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    expressRouteAuthorizationKey String
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    expressRouteCircuitId String
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.

    ExpressRouteConnectionInformationResponse, ExpressRouteConnectionInformationResponseArgs

    ExpressRouteAuthorizationKey string
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    ExpressRouteCircuitId string
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    ExpressRouteAuthorizationKey string
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    ExpressRouteCircuitId string
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    expressRouteAuthorizationKey String
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    expressRouteCircuitId String
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    expressRouteAuthorizationKey string
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    expressRouteCircuitId string
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    express_route_authorization_key str
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    express_route_circuit_id str
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
    expressRouteAuthorizationKey String
    Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
    expressRouteCircuitId String
    The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.

    IsWorkloadManagementNetworkEnabled, IsWorkloadManagementNetworkEnabledArgs

    True
    True
    False
    False
    IsWorkloadManagementNetworkEnabledTrue
    True
    IsWorkloadManagementNetworkEnabledFalse
    False
    True
    True
    False
    False
    True
    True
    False
    False
    TRUE
    True
    FALSE
    False
    "True"
    True
    "False"
    False

    ManagedResourceGroupConfiguration, ManagedResourceGroupConfigurationArgs

    Location string
    Managed resource group location.
    Name string
    The NFC service will be hosted in a Managed resource group.
    Location string
    Managed resource group location.
    Name string
    The NFC service will be hosted in a Managed resource group.
    location String
    Managed resource group location.
    name String
    The NFC service will be hosted in a Managed resource group.
    location string
    Managed resource group location.
    name string
    The NFC service will be hosted in a Managed resource group.
    location str
    Managed resource group location.
    name str
    The NFC service will be hosted in a Managed resource group.
    location String
    Managed resource group location.
    name String
    The NFC service will be hosted in a Managed resource group.

    ManagedResourceGroupConfigurationResponse, ManagedResourceGroupConfigurationResponseArgs

    Location string
    Managed resource group location.
    Name string
    The NFC service will be hosted in a Managed resource group.
    Location string
    Managed resource group location.
    Name string
    The NFC service will be hosted in a Managed resource group.
    location String
    Managed resource group location.
    name String
    The NFC service will be hosted in a Managed resource group.
    location string
    Managed resource group location.
    name string
    The NFC service will be hosted in a Managed resource group.
    location str
    Managed resource group location.
    name str
    The NFC service will be hosted in a Managed resource group.
    location String
    Managed resource group location.
    name String
    The NFC service will be hosted in a Managed resource group.

    NfcSku, NfcSkuArgs

    Basic
    Basic
    Standard
    Standard
    HighPerformance
    HighPerformance
    NfcSkuBasic
    Basic
    NfcSkuStandard
    Standard
    NfcSkuHighPerformance
    HighPerformance
    Basic
    Basic
    Standard
    Standard
    HighPerformance
    HighPerformance
    Basic
    Basic
    Standard
    Standard
    HighPerformance
    HighPerformance
    BASIC
    Basic
    STANDARD
    Standard
    HIGH_PERFORMANCE
    HighPerformance
    "Basic"
    Basic
    "Standard"
    Standard
    "HighPerformance"
    HighPerformance

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:managednetworkfabric:NetworkFabricController example-networkController /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/{networkFabricControllerName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi