Microsoft.Network customIpPrefixes 2020-11-01

Bicep resource definition

The customIpPrefixes resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Network/customIpPrefixes resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Network/customIpPrefixes@2020-11-01' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  extendedLocation: {
    name: 'string'
    type: 'EdgeZone'
  }
  properties: {
    cidr: 'string'
    commissionedState: 'string'
  }
  zones: [
    'string'
  ]
}

Property values

customIpPrefixes

Name Description Value
name The resource name string (required)
location Resource location. string
tags Resource tags. Dictionary of tag names and values. See Tags in templates
extendedLocation The extended location of the custom IP prefix. ExtendedLocation
properties Custom IP prefix properties. CustomIpPrefixPropertiesFormat
zones A list of availability zones denoting the IP allocated for the resource needs to come from. string[]

ExtendedLocation

Name Description Value
name The name of the extended location. string (required)
type The type of the extended location. 'EdgeZone' (required)

CustomIpPrefixPropertiesFormat

Name Description Value
cidr The prefix range in CIDR notation. Should include the start address and the prefix length. string
commissionedState The commissioned state of the Custom IP Prefix. 'Commissioned'
'Commissioning'
'Decommissioning'
'Deprovisioning'
'Provisioned'
'Provisioning'

ARM template resource definition

The customIpPrefixes resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Network/customIpPrefixes resource, add the following JSON to your template.

{
  "type": "Microsoft.Network/customIpPrefixes",
  "apiVersion": "2020-11-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "extendedLocation": {
    "name": "string",
    "type": "EdgeZone"
  },
  "properties": {
    "cidr": "string",
    "commissionedState": "string"
  },
  "zones": [ "string" ]
}

Property values

customIpPrefixes

Name Description Value
type The resource type 'Microsoft.Network/customIpPrefixes'
apiVersion The resource api version '2020-11-01'
name The resource name string (required)
location Resource location. string
tags Resource tags. Dictionary of tag names and values. See Tags in templates
extendedLocation The extended location of the custom IP prefix. ExtendedLocation
properties Custom IP prefix properties. CustomIpPrefixPropertiesFormat
zones A list of availability zones denoting the IP allocated for the resource needs to come from. string[]

ExtendedLocation

Name Description Value
name The name of the extended location. string (required)
type The type of the extended location. 'EdgeZone' (required)

CustomIpPrefixPropertiesFormat

Name Description Value
cidr The prefix range in CIDR notation. Should include the start address and the prefix length. string
commissionedState The commissioned state of the Custom IP Prefix. 'Commissioned'
'Commissioning'
'Decommissioning'
'Deprovisioning'
'Provisioned'
'Provisioning'

Terraform (AzAPI provider) resource definition

The customIpPrefixes resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Network/customIpPrefixes resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/customIpPrefixes@2020-11-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      cidr = "string"
      commissionedState = "string"
    }
    zones = [
      "string"
    ]
    extendedLocation = {
      name = "string"
      type = "EdgeZone"
    }
  })
}

Property values

customIpPrefixes

Name Description Value
type The resource type "Microsoft.Network/customIpPrefixes@2020-11-01"
name The resource name string (required)
location Resource location. string
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags Resource tags. Dictionary of tag names and values.
extendedLocation The extended location of the custom IP prefix. ExtendedLocation
properties Custom IP prefix properties. CustomIpPrefixPropertiesFormat
zones A list of availability zones denoting the IP allocated for the resource needs to come from. string[]

ExtendedLocation

Name Description Value
name The name of the extended location. string (required)
type The type of the extended location. "EdgeZone" (required)

CustomIpPrefixPropertiesFormat

Name Description Value
cidr The prefix range in CIDR notation. Should include the start address and the prefix length. string
commissionedState The commissioned state of the Custom IP Prefix. "Commissioned"
"Commissioning"
"Decommissioning"
"Deprovisioning"
"Provisioned"
"Provisioning"