azure logo
Azure Classic v5.43.0, May 6 23

azure.network.Subnet

Explore with Pulumi AI

Manages a subnet. Subnets represent network segments within the IP space defined by the virtual network.

NOTE on Virtual Networks and Subnet’s: This provider currently provides both a standalone Subnet resource, and allows for Subnets to be defined in-line within the Virtual Network resource. At this time you cannot use a Virtual Network with in-line Subnets in conjunction with any Subnet resources. Doing so will cause a conflict of Subnet configurations and will overwrite Subnet’s.

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 exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new()
    {
        AddressSpaces = new[]
        {
            "10.0.0.0/16",
        },
        Location = exampleResourceGroup.Location,
        ResourceGroupName = exampleResourceGroup.Name,
    });

    var exampleSubnet = new Azure.Network.Subnet("exampleSubnet", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        VirtualNetworkName = exampleVirtualNetwork.Name,
        AddressPrefixes = new[]
        {
            "10.0.1.0/24",
        },
        Delegations = new[]
        {
            new Azure.Network.Inputs.SubnetDelegationArgs
            {
                Name = "delegation",
                ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
                {
                    Name = "Microsoft.ContainerInstance/containerGroups",
                    Actions = new[]
                    {
                        "Microsoft.Network/virtualNetworks/subnets/join/action",
                        "Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action",
                    },
                },
            },
        },
    });

});
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
		}
		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
			AddressSpaces: pulumi.StringArray{
				pulumi.String("10.0.0.0/16"),
			},
			Location:          exampleResourceGroup.Location,
			ResourceGroupName: exampleResourceGroup.Name,
		})
		if err != nil {
			return err
		}
		_, err = network.NewSubnet(ctx, "exampleSubnet", &network.SubnetArgs{
			ResourceGroupName:  exampleResourceGroup.Name,
			VirtualNetworkName: exampleVirtualNetwork.Name,
			AddressPrefixes: pulumi.StringArray{
				pulumi.String("10.0.1.0/24"),
			},
			Delegations: network.SubnetDelegationArray{
				&network.SubnetDelegationArgs{
					Name: pulumi.String("delegation"),
					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
						Name: pulumi.String("Microsoft.ContainerInstance/containerGroups"),
						Actions: pulumi.StringArray{
							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
							pulumi.String("Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action"),
						},
					},
				},
			},
		})
		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.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.network.inputs.SubnetDelegationArgs;
import com.pulumi.azure.network.inputs.SubnetDelegationServiceDelegationArgs;
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());

        var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
            .addressSpaces("10.0.0.0/16")
            .location(exampleResourceGroup.location())
            .resourceGroupName(exampleResourceGroup.name())
            .build());

        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .virtualNetworkName(exampleVirtualNetwork.name())
            .addressPrefixes("10.0.1.0/24")
            .delegations(SubnetDelegationArgs.builder()
                .name("delegation")
                .serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
                    .name("Microsoft.ContainerInstance/containerGroups")
                    .actions(                    
                        "Microsoft.Network/virtualNetworks/subnets/join/action",
                        "Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action")
                    .build())
                .build())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
    address_spaces=["10.0.0.0/16"],
    location=example_resource_group.location,
    resource_group_name=example_resource_group.name)
example_subnet = azure.network.Subnet("exampleSubnet",
    resource_group_name=example_resource_group.name,
    virtual_network_name=example_virtual_network.name,
    address_prefixes=["10.0.1.0/24"],
    delegations=[azure.network.SubnetDelegationArgs(
        name="delegation",
        service_delegation=azure.network.SubnetDelegationServiceDelegationArgs(
            name="Microsoft.ContainerInstance/containerGroups",
            actions=[
                "Microsoft.Network/virtualNetworks/subnets/join/action",
                "Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action",
            ],
        ),
    )])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
    addressSpaces: ["10.0.0.0/16"],
    location: exampleResourceGroup.location,
    resourceGroupName: exampleResourceGroup.name,
});
const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
    resourceGroupName: exampleResourceGroup.name,
    virtualNetworkName: exampleVirtualNetwork.name,
    addressPrefixes: ["10.0.1.0/24"],
    delegations: [{
        name: "delegation",
        serviceDelegation: {
            name: "Microsoft.ContainerInstance/containerGroups",
            actions: [
                "Microsoft.Network/virtualNetworks/subnets/join/action",
                "Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action",
            ],
        },
    }],
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    properties:
      addressSpaces:
        - 10.0.0.0/16
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
  exampleSubnet:
    type: azure:network:Subnet
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      virtualNetworkName: ${exampleVirtualNetwork.name}
      addressPrefixes:
        - 10.0.1.0/24
      delegations:
        - name: delegation
          serviceDelegation:
            name: Microsoft.ContainerInstance/containerGroups
            actions:
              - Microsoft.Network/virtualNetworks/subnets/join/action
              - Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action

Create Subnet Resource

new Subnet(name: string, args: SubnetArgs, opts?: CustomResourceOptions);
@overload
def Subnet(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           address_prefixes: Optional[Sequence[str]] = None,
           delegations: Optional[Sequence[SubnetDelegationArgs]] = None,
           enforce_private_link_endpoint_network_policies: Optional[bool] = None,
           enforce_private_link_service_network_policies: Optional[bool] = None,
           name: Optional[str] = None,
           private_endpoint_network_policies_enabled: Optional[bool] = None,
           private_link_service_network_policies_enabled: Optional[bool] = None,
           resource_group_name: Optional[str] = None,
           service_endpoint_policy_ids: Optional[Sequence[str]] = None,
           service_endpoints: Optional[Sequence[str]] = None,
           virtual_network_name: Optional[str] = None)
@overload
def Subnet(resource_name: str,
           args: SubnetArgs,
           opts: Optional[ResourceOptions] = None)
func NewSubnet(ctx *Context, name string, args SubnetArgs, opts ...ResourceOption) (*Subnet, error)
public Subnet(string name, SubnetArgs args, CustomResourceOptions? opts = null)
public Subnet(String name, SubnetArgs args)
public Subnet(String name, SubnetArgs args, CustomResourceOptions options)
type: azure:network:Subnet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

Subnet 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 Subnet resource accepts the following input properties:

AddressPrefixes List<string>

The address prefixes to use for the subnet.

ResourceGroupName string

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

VirtualNetworkName string

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

Delegations List<SubnetDelegationArgs>

One or more delegation blocks as defined below.

EnforcePrivateLinkEndpointNetworkPolicies bool

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

EnforcePrivateLinkServiceNetworkPolicies bool

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

Name string

The name of the subnet. Changing this forces a new resource to be created.

PrivateEndpointNetworkPoliciesEnabled bool

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

PrivateLinkServiceNetworkPoliciesEnabled bool

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

ServiceEndpointPolicyIds List<string>

The list of IDs of Service Endpoint Policies to associate with the subnet.

ServiceEndpoints List<string>

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

AddressPrefixes []string

The address prefixes to use for the subnet.

ResourceGroupName string

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

VirtualNetworkName string

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

Delegations []SubnetDelegationArgs

One or more delegation blocks as defined below.

EnforcePrivateLinkEndpointNetworkPolicies bool

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

EnforcePrivateLinkServiceNetworkPolicies bool

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

Name string

The name of the subnet. Changing this forces a new resource to be created.

PrivateEndpointNetworkPoliciesEnabled bool

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

PrivateLinkServiceNetworkPoliciesEnabled bool

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

ServiceEndpointPolicyIds []string

The list of IDs of Service Endpoint Policies to associate with the subnet.

ServiceEndpoints []string

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

addressPrefixes List<String>

The address prefixes to use for the subnet.

resourceGroupName String

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

virtualNetworkName String

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

delegations List<SubnetDelegationArgs>

One or more delegation blocks as defined below.

enforcePrivateLinkEndpointNetworkPolicies Boolean

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforcePrivateLinkServiceNetworkPolicies Boolean

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name String

The name of the subnet. Changing this forces a new resource to be created.

privateEndpointNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

privateLinkServiceNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

serviceEndpointPolicyIds List<String>

The list of IDs of Service Endpoint Policies to associate with the subnet.

serviceEndpoints List<String>

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

addressPrefixes string[]

The address prefixes to use for the subnet.

resourceGroupName string

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

virtualNetworkName string

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

delegations SubnetDelegationArgs[]

One or more delegation blocks as defined below.

enforcePrivateLinkEndpointNetworkPolicies boolean

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforcePrivateLinkServiceNetworkPolicies boolean

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name string

The name of the subnet. Changing this forces a new resource to be created.

privateEndpointNetworkPoliciesEnabled boolean

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

privateLinkServiceNetworkPoliciesEnabled boolean

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

serviceEndpointPolicyIds string[]

The list of IDs of Service Endpoint Policies to associate with the subnet.

serviceEndpoints string[]

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

address_prefixes Sequence[str]

The address prefixes to use for the subnet.

resource_group_name str

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

virtual_network_name str

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

delegations Sequence[SubnetDelegationArgs]

One or more delegation blocks as defined below.

enforce_private_link_endpoint_network_policies bool

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforce_private_link_service_network_policies bool

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name str

The name of the subnet. Changing this forces a new resource to be created.

private_endpoint_network_policies_enabled bool

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

private_link_service_network_policies_enabled bool

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

service_endpoint_policy_ids Sequence[str]

The list of IDs of Service Endpoint Policies to associate with the subnet.

service_endpoints Sequence[str]

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

addressPrefixes List<String>

The address prefixes to use for the subnet.

resourceGroupName String

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

virtualNetworkName String

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

delegations List<Property Map>

One or more delegation blocks as defined below.

enforcePrivateLinkEndpointNetworkPolicies Boolean

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforcePrivateLinkServiceNetworkPolicies Boolean

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name String

The name of the subnet. Changing this forces a new resource to be created.

privateEndpointNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

privateLinkServiceNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

serviceEndpointPolicyIds List<String>

The list of IDs of Service Endpoint Policies to associate with the subnet.

serviceEndpoints List<String>

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

Outputs

All input properties are implicitly available as output properties. Additionally, the Subnet 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 Subnet Resource

Get an existing Subnet 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?: SubnetState, opts?: CustomResourceOptions): Subnet
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address_prefixes: Optional[Sequence[str]] = None,
        delegations: Optional[Sequence[SubnetDelegationArgs]] = None,
        enforce_private_link_endpoint_network_policies: Optional[bool] = None,
        enforce_private_link_service_network_policies: Optional[bool] = None,
        name: Optional[str] = None,
        private_endpoint_network_policies_enabled: Optional[bool] = None,
        private_link_service_network_policies_enabled: Optional[bool] = None,
        resource_group_name: Optional[str] = None,
        service_endpoint_policy_ids: Optional[Sequence[str]] = None,
        service_endpoints: Optional[Sequence[str]] = None,
        virtual_network_name: Optional[str] = None) -> Subnet
func GetSubnet(ctx *Context, name string, id IDInput, state *SubnetState, opts ...ResourceOption) (*Subnet, error)
public static Subnet Get(string name, Input<string> id, SubnetState? state, CustomResourceOptions? opts = null)
public static Subnet get(String name, Output<String> id, SubnetState 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:
AddressPrefixes List<string>

The address prefixes to use for the subnet.

Delegations List<SubnetDelegationArgs>

One or more delegation blocks as defined below.

EnforcePrivateLinkEndpointNetworkPolicies bool

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

EnforcePrivateLinkServiceNetworkPolicies bool

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

Name string

The name of the subnet. Changing this forces a new resource to be created.

PrivateEndpointNetworkPoliciesEnabled bool

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

PrivateLinkServiceNetworkPoliciesEnabled bool

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

ResourceGroupName string

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

ServiceEndpointPolicyIds List<string>

The list of IDs of Service Endpoint Policies to associate with the subnet.

ServiceEndpoints List<string>

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

VirtualNetworkName string

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

AddressPrefixes []string

The address prefixes to use for the subnet.

Delegations []SubnetDelegationArgs

One or more delegation blocks as defined below.

EnforcePrivateLinkEndpointNetworkPolicies bool

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

EnforcePrivateLinkServiceNetworkPolicies bool

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

Name string

The name of the subnet. Changing this forces a new resource to be created.

PrivateEndpointNetworkPoliciesEnabled bool

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

PrivateLinkServiceNetworkPoliciesEnabled bool

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

ResourceGroupName string

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

ServiceEndpointPolicyIds []string

The list of IDs of Service Endpoint Policies to associate with the subnet.

ServiceEndpoints []string

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

VirtualNetworkName string

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

addressPrefixes List<String>

The address prefixes to use for the subnet.

delegations List<SubnetDelegationArgs>

One or more delegation blocks as defined below.

enforcePrivateLinkEndpointNetworkPolicies Boolean

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforcePrivateLinkServiceNetworkPolicies Boolean

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name String

The name of the subnet. Changing this forces a new resource to be created.

privateEndpointNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

privateLinkServiceNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

resourceGroupName String

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

serviceEndpointPolicyIds List<String>

The list of IDs of Service Endpoint Policies to associate with the subnet.

serviceEndpoints List<String>

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

virtualNetworkName String

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

addressPrefixes string[]

The address prefixes to use for the subnet.

delegations SubnetDelegationArgs[]

One or more delegation blocks as defined below.

enforcePrivateLinkEndpointNetworkPolicies boolean

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforcePrivateLinkServiceNetworkPolicies boolean

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name string

The name of the subnet. Changing this forces a new resource to be created.

privateEndpointNetworkPoliciesEnabled boolean

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

privateLinkServiceNetworkPoliciesEnabled boolean

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

resourceGroupName string

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

serviceEndpointPolicyIds string[]

The list of IDs of Service Endpoint Policies to associate with the subnet.

serviceEndpoints string[]

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

virtualNetworkName string

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

address_prefixes Sequence[str]

The address prefixes to use for the subnet.

delegations Sequence[SubnetDelegationArgs]

One or more delegation blocks as defined below.

enforce_private_link_endpoint_network_policies bool

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforce_private_link_service_network_policies bool

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name str

The name of the subnet. Changing this forces a new resource to be created.

private_endpoint_network_policies_enabled bool

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

private_link_service_network_policies_enabled bool

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

resource_group_name str

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

service_endpoint_policy_ids Sequence[str]

The list of IDs of Service Endpoint Policies to associate with the subnet.

service_endpoints Sequence[str]

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

virtual_network_name str

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

addressPrefixes List<String>

The address prefixes to use for the subnet.

delegations List<Property Map>

One or more delegation blocks as defined below.

enforcePrivateLinkEndpointNetworkPolicies Boolean

Deprecated:

enforce_private_link_endpoint_network_policies will be removed in favour of the property private_endpoint_network_policies_enabled in version 4.0 of the AzureRM Provider

enforcePrivateLinkServiceNetworkPolicies Boolean

Deprecated:

enforce_private_link_service_network_policies will be removed in favour of the property private_link_service_network_policies_enabled in version 4.0 of the AzureRM Provider

name String

The name of the subnet. Changing this forces a new resource to be created.

privateEndpointNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private endpoint on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

privateLinkServiceNetworkPoliciesEnabled Boolean

Enable or Disable network policies for the private link service on the subnet. Setting this to true will Enable the policy and setting this to false will Disable the policy. Defaults to true.

resourceGroupName String

The name of the resource group in which to create the subnet. Changing this forces a new resource to be created.

serviceEndpointPolicyIds List<String>

The list of IDs of Service Endpoint Policies to associate with the subnet.

serviceEndpoints List<String>

The list of Service endpoints to associate with the subnet. Possible values include: Microsoft.AzureActiveDirectory, Microsoft.AzureCosmosDB, Microsoft.ContainerRegistry, Microsoft.EventHub, Microsoft.KeyVault, Microsoft.ServiceBus, Microsoft.Sql, Microsoft.Storage, Microsoft.Storage.Global and Microsoft.Web.

virtualNetworkName String

The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.

Supporting Types

SubnetDelegation

Name string

A name for this delegation.

ServiceDelegation SubnetDelegationServiceDelegation

A service_delegation block as defined below.

Name string

A name for this delegation.

ServiceDelegation SubnetDelegationServiceDelegation

A service_delegation block as defined below.

name String

A name for this delegation.

serviceDelegation SubnetDelegationServiceDelegation

A service_delegation block as defined below.

name string

A name for this delegation.

serviceDelegation SubnetDelegationServiceDelegation

A service_delegation block as defined below.

name str

A name for this delegation.

service_delegation SubnetDelegationServiceDelegation

A service_delegation block as defined below.

name String

A name for this delegation.

serviceDelegation Property Map

A service_delegation block as defined below.

SubnetDelegationServiceDelegation

Name string

The name of service to delegate to. Possible values are Microsoft.ApiManagement/service, Microsoft.AzureCosmosDB/clusters, Microsoft.BareMetal/AzureVMware, Microsoft.BareMetal/CrayServers, Microsoft.Batch/batchAccounts, Microsoft.ContainerInstance/containerGroups, Microsoft.ContainerService/managedClusters, Microsoft.Databricks/workspaces, Microsoft.DBforMySQL/flexibleServers, Microsoft.DBforMySQL/serversv2, Microsoft.DBforPostgreSQL/flexibleServers, Microsoft.DBforPostgreSQL/serversv2, Microsoft.DBforPostgreSQL/singleServers, Microsoft.HardwareSecurityModules/dedicatedHSMs, Microsoft.Kusto/clusters, Microsoft.Logic/integrationServiceEnvironments, Microsoft.LabServices/labplans, Microsoft.MachineLearningServices/workspaces, Microsoft.Netapp/volumes, Microsoft.Network/dnsResolvers, Microsoft.Network/managedResolvers, Microsoft.PowerPlatform/vnetaccesslinks, Microsoft.ServiceFabricMesh/networks, Microsoft.Sql/managedInstances, Microsoft.Sql/servers, Microsoft.StoragePool/diskPools, Microsoft.StreamAnalytics/streamingJobs, Microsoft.Synapse/workspaces, Microsoft.Web/hostingEnvironments, Microsoft.Web/serverFarms, Microsoft.Orbital/orbitalGateways, NGINX.NGINXPLUS/nginxDeployments, PaloAltoNetworks.Cloudngfw/firewalls, and Qumulo.Storage/fileSystems.

Actions List<string>

A list of Actions which should be delegated. This list is specific to the service to delegate to. Possible values are Microsoft.Network/networkinterfaces/*, Microsoft.Network/publicIPAddresses/join/action, Microsoft.Network/publicIPAddresses/read, Microsoft.Network/virtualNetworks/read, Microsoft.Network/virtualNetworks/subnets/action, Microsoft.Network/virtualNetworks/subnets/join/action, Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action, and Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action.

Name string

The name of service to delegate to. Possible values are Microsoft.ApiManagement/service, Microsoft.AzureCosmosDB/clusters, Microsoft.BareMetal/AzureVMware, Microsoft.BareMetal/CrayServers, Microsoft.Batch/batchAccounts, Microsoft.ContainerInstance/containerGroups, Microsoft.ContainerService/managedClusters, Microsoft.Databricks/workspaces, Microsoft.DBforMySQL/flexibleServers, Microsoft.DBforMySQL/serversv2, Microsoft.DBforPostgreSQL/flexibleServers, Microsoft.DBforPostgreSQL/serversv2, Microsoft.DBforPostgreSQL/singleServers, Microsoft.HardwareSecurityModules/dedicatedHSMs, Microsoft.Kusto/clusters, Microsoft.Logic/integrationServiceEnvironments, Microsoft.LabServices/labplans, Microsoft.MachineLearningServices/workspaces, Microsoft.Netapp/volumes, Microsoft.Network/dnsResolvers, Microsoft.Network/managedResolvers, Microsoft.PowerPlatform/vnetaccesslinks, Microsoft.ServiceFabricMesh/networks, Microsoft.Sql/managedInstances, Microsoft.Sql/servers, Microsoft.StoragePool/diskPools, Microsoft.StreamAnalytics/streamingJobs, Microsoft.Synapse/workspaces, Microsoft.Web/hostingEnvironments, Microsoft.Web/serverFarms, Microsoft.Orbital/orbitalGateways, NGINX.NGINXPLUS/nginxDeployments, PaloAltoNetworks.Cloudngfw/firewalls, and Qumulo.Storage/fileSystems.

Actions []string

A list of Actions which should be delegated. This list is specific to the service to delegate to. Possible values are Microsoft.Network/networkinterfaces/*, Microsoft.Network/publicIPAddresses/join/action, Microsoft.Network/publicIPAddresses/read, Microsoft.Network/virtualNetworks/read, Microsoft.Network/virtualNetworks/subnets/action, Microsoft.Network/virtualNetworks/subnets/join/action, Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action, and Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action.

name String

The name of service to delegate to. Possible values are Microsoft.ApiManagement/service, Microsoft.AzureCosmosDB/clusters, Microsoft.BareMetal/AzureVMware, Microsoft.BareMetal/CrayServers, Microsoft.Batch/batchAccounts, Microsoft.ContainerInstance/containerGroups, Microsoft.ContainerService/managedClusters, Microsoft.Databricks/workspaces, Microsoft.DBforMySQL/flexibleServers, Microsoft.DBforMySQL/serversv2, Microsoft.DBforPostgreSQL/flexibleServers, Microsoft.DBforPostgreSQL/serversv2, Microsoft.DBforPostgreSQL/singleServers, Microsoft.HardwareSecurityModules/dedicatedHSMs, Microsoft.Kusto/clusters, Microsoft.Logic/integrationServiceEnvironments, Microsoft.LabServices/labplans, Microsoft.MachineLearningServices/workspaces, Microsoft.Netapp/volumes, Microsoft.Network/dnsResolvers, Microsoft.Network/managedResolvers, Microsoft.PowerPlatform/vnetaccesslinks, Microsoft.ServiceFabricMesh/networks, Microsoft.Sql/managedInstances, Microsoft.Sql/servers, Microsoft.StoragePool/diskPools, Microsoft.StreamAnalytics/streamingJobs, Microsoft.Synapse/workspaces, Microsoft.Web/hostingEnvironments, Microsoft.Web/serverFarms, Microsoft.Orbital/orbitalGateways, NGINX.NGINXPLUS/nginxDeployments, PaloAltoNetworks.Cloudngfw/firewalls, and Qumulo.Storage/fileSystems.

actions List<String>

A list of Actions which should be delegated. This list is specific to the service to delegate to. Possible values are Microsoft.Network/networkinterfaces/*, Microsoft.Network/publicIPAddresses/join/action, Microsoft.Network/publicIPAddresses/read, Microsoft.Network/virtualNetworks/read, Microsoft.Network/virtualNetworks/subnets/action, Microsoft.Network/virtualNetworks/subnets/join/action, Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action, and Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action.

name string

The name of service to delegate to. Possible values are Microsoft.ApiManagement/service, Microsoft.AzureCosmosDB/clusters, Microsoft.BareMetal/AzureVMware, Microsoft.BareMetal/CrayServers, Microsoft.Batch/batchAccounts, Microsoft.ContainerInstance/containerGroups, Microsoft.ContainerService/managedClusters, Microsoft.Databricks/workspaces, Microsoft.DBforMySQL/flexibleServers, Microsoft.DBforMySQL/serversv2, Microsoft.DBforPostgreSQL/flexibleServers, Microsoft.DBforPostgreSQL/serversv2, Microsoft.DBforPostgreSQL/singleServers, Microsoft.HardwareSecurityModules/dedicatedHSMs, Microsoft.Kusto/clusters, Microsoft.Logic/integrationServiceEnvironments, Microsoft.LabServices/labplans, Microsoft.MachineLearningServices/workspaces, Microsoft.Netapp/volumes, Microsoft.Network/dnsResolvers, Microsoft.Network/managedResolvers, Microsoft.PowerPlatform/vnetaccesslinks, Microsoft.ServiceFabricMesh/networks, Microsoft.Sql/managedInstances, Microsoft.Sql/servers, Microsoft.StoragePool/diskPools, Microsoft.StreamAnalytics/streamingJobs, Microsoft.Synapse/workspaces, Microsoft.Web/hostingEnvironments, Microsoft.Web/serverFarms, Microsoft.Orbital/orbitalGateways, NGINX.NGINXPLUS/nginxDeployments, PaloAltoNetworks.Cloudngfw/firewalls, and Qumulo.Storage/fileSystems.

actions string[]

A list of Actions which should be delegated. This list is specific to the service to delegate to. Possible values are Microsoft.Network/networkinterfaces/*, Microsoft.Network/publicIPAddresses/join/action, Microsoft.Network/publicIPAddresses/read, Microsoft.Network/virtualNetworks/read, Microsoft.Network/virtualNetworks/subnets/action, Microsoft.Network/virtualNetworks/subnets/join/action, Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action, and Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action.

name str

The name of service to delegate to. Possible values are Microsoft.ApiManagement/service, Microsoft.AzureCosmosDB/clusters, Microsoft.BareMetal/AzureVMware, Microsoft.BareMetal/CrayServers, Microsoft.Batch/batchAccounts, Microsoft.ContainerInstance/containerGroups, Microsoft.ContainerService/managedClusters, Microsoft.Databricks/workspaces, Microsoft.DBforMySQL/flexibleServers, Microsoft.DBforMySQL/serversv2, Microsoft.DBforPostgreSQL/flexibleServers, Microsoft.DBforPostgreSQL/serversv2, Microsoft.DBforPostgreSQL/singleServers, Microsoft.HardwareSecurityModules/dedicatedHSMs, Microsoft.Kusto/clusters, Microsoft.Logic/integrationServiceEnvironments, Microsoft.LabServices/labplans, Microsoft.MachineLearningServices/workspaces, Microsoft.Netapp/volumes, Microsoft.Network/dnsResolvers, Microsoft.Network/managedResolvers, Microsoft.PowerPlatform/vnetaccesslinks, Microsoft.ServiceFabricMesh/networks, Microsoft.Sql/managedInstances, Microsoft.Sql/servers, Microsoft.StoragePool/diskPools, Microsoft.StreamAnalytics/streamingJobs, Microsoft.Synapse/workspaces, Microsoft.Web/hostingEnvironments, Microsoft.Web/serverFarms, Microsoft.Orbital/orbitalGateways, NGINX.NGINXPLUS/nginxDeployments, PaloAltoNetworks.Cloudngfw/firewalls, and Qumulo.Storage/fileSystems.

actions Sequence[str]

A list of Actions which should be delegated. This list is specific to the service to delegate to. Possible values are Microsoft.Network/networkinterfaces/*, Microsoft.Network/publicIPAddresses/join/action, Microsoft.Network/publicIPAddresses/read, Microsoft.Network/virtualNetworks/read, Microsoft.Network/virtualNetworks/subnets/action, Microsoft.Network/virtualNetworks/subnets/join/action, Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action, and Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action.

name String

The name of service to delegate to. Possible values are Microsoft.ApiManagement/service, Microsoft.AzureCosmosDB/clusters, Microsoft.BareMetal/AzureVMware, Microsoft.BareMetal/CrayServers, Microsoft.Batch/batchAccounts, Microsoft.ContainerInstance/containerGroups, Microsoft.ContainerService/managedClusters, Microsoft.Databricks/workspaces, Microsoft.DBforMySQL/flexibleServers, Microsoft.DBforMySQL/serversv2, Microsoft.DBforPostgreSQL/flexibleServers, Microsoft.DBforPostgreSQL/serversv2, Microsoft.DBforPostgreSQL/singleServers, Microsoft.HardwareSecurityModules/dedicatedHSMs, Microsoft.Kusto/clusters, Microsoft.Logic/integrationServiceEnvironments, Microsoft.LabServices/labplans, Microsoft.MachineLearningServices/workspaces, Microsoft.Netapp/volumes, Microsoft.Network/dnsResolvers, Microsoft.Network/managedResolvers, Microsoft.PowerPlatform/vnetaccesslinks, Microsoft.ServiceFabricMesh/networks, Microsoft.Sql/managedInstances, Microsoft.Sql/servers, Microsoft.StoragePool/diskPools, Microsoft.StreamAnalytics/streamingJobs, Microsoft.Synapse/workspaces, Microsoft.Web/hostingEnvironments, Microsoft.Web/serverFarms, Microsoft.Orbital/orbitalGateways, NGINX.NGINXPLUS/nginxDeployments, PaloAltoNetworks.Cloudngfw/firewalls, and Qumulo.Storage/fileSystems.

actions List<String>

A list of Actions which should be delegated. This list is specific to the service to delegate to. Possible values are Microsoft.Network/networkinterfaces/*, Microsoft.Network/publicIPAddresses/join/action, Microsoft.Network/publicIPAddresses/read, Microsoft.Network/virtualNetworks/read, Microsoft.Network/virtualNetworks/subnets/action, Microsoft.Network/virtualNetworks/subnets/join/action, Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action, and Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action.

Import

Subnets can be imported using the resource id, e.g.

 $ pulumi import azure:network/subnet:Subnet exampleSubnet /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/mysubnet1

Package Details

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

This Pulumi package is based on the azurerm Terraform Provider.