Microsoft.Network networkSecurityPerimeters/profiles/accessRules 2021-02-01-preview

Bicep resource definition

The networkSecurityPerimeters/profiles/accessRules 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/networkSecurityPerimeters/profiles/accessRules resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Network/networkSecurityPerimeters/profiles/accessRules@2021-02-01-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  parent: resourceSymbolicName
  properties: {
    addressPrefixes: [
      'string'
    ]
    direction: 'string'
    emailAddresses: [
      'string'
    ]
    fullyQualifiedDomainNames: [
      'string'
    ]
    phoneNumbers: [
      'string'
    ]
    subscriptions: [
      {
        id: 'string'
      }
    ]
  }
}

Property values

networkSecurityPerimeters/profiles/accessRules

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)
location Resource location. string
tags Resource tags. Dictionary of tag names and values. See Tags in templates
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: profiles
properties Properties of the NSP access rule. NspAccessRuleProperties

NspAccessRuleProperties

Name Description Value
addressPrefixes Inbound address prefixes (IPv4/IPv6) string[]
direction Direction that specifies whether the access rules is inbound/outbound. 'Inbound'
'Outbound'
emailAddresses Outbound rules email address format. string[]
fullyQualifiedDomainNames Outbound rules fully qualified domain name format. string[]
phoneNumbers Outbound rules phone number format. string[]
subscriptions List of subscription ids SubscriptionId[]

SubscriptionId

Name Description Value
id Subscription id in the ARM id format. string

ARM template resource definition

The networkSecurityPerimeters/profiles/accessRules 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/networkSecurityPerimeters/profiles/accessRules resource, add the following JSON to your template.

{
  "type": "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules",
  "apiVersion": "2021-02-01-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "addressPrefixes": [ "string" ],
    "direction": "string",
    "emailAddresses": [ "string" ],
    "fullyQualifiedDomainNames": [ "string" ],
    "phoneNumbers": [ "string" ],
    "subscriptions": [
      {
        "id": "string"
      }
    ]
  }
}

Property values

networkSecurityPerimeters/profiles/accessRules

Name Description Value
type The resource type 'Microsoft.Network/networkSecurityPerimeters/profiles/accessRules'
apiVersion The resource api version '2021-02-01-preview'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
location Resource location. string
tags Resource tags. Dictionary of tag names and values. See Tags in templates
properties Properties of the NSP access rule. NspAccessRuleProperties

NspAccessRuleProperties

Name Description Value
addressPrefixes Inbound address prefixes (IPv4/IPv6) string[]
direction Direction that specifies whether the access rules is inbound/outbound. 'Inbound'
'Outbound'
emailAddresses Outbound rules email address format. string[]
fullyQualifiedDomainNames Outbound rules fully qualified domain name format. string[]
phoneNumbers Outbound rules phone number format. string[]
subscriptions List of subscription ids SubscriptionId[]

SubscriptionId

Name Description Value
id Subscription id in the ARM id format. string

Terraform (AzAPI provider) resource definition

The networkSecurityPerimeters/profiles/accessRules 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/networkSecurityPerimeters/profiles/accessRules resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules@2021-02-01-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      addressPrefixes = [
        "string"
      ]
      direction = "string"
      emailAddresses = [
        "string"
      ]
      fullyQualifiedDomainNames = [
        "string"
      ]
      phoneNumbers = [
        "string"
      ]
      subscriptions = [
        {
          id = "string"
        }
      ]
    }
  })
}

Property values

networkSecurityPerimeters/profiles/accessRules

Name Description Value
type The resource type "Microsoft.Network/networkSecurityPerimeters/profiles/accessRules@2021-02-01-preview"
name The resource name string (required)
location Resource location. string
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: profiles
tags Resource tags. Dictionary of tag names and values.
properties Properties of the NSP access rule. NspAccessRuleProperties

NspAccessRuleProperties

Name Description Value
addressPrefixes Inbound address prefixes (IPv4/IPv6) string[]
direction Direction that specifies whether the access rules is inbound/outbound. "Inbound"
"Outbound"
emailAddresses Outbound rules email address format. string[]
fullyQualifiedDomainNames Outbound rules fully qualified domain name format. string[]
phoneNumbers Outbound rules phone number format. string[]
subscriptions List of subscription ids SubscriptionId[]

SubscriptionId

Name Description Value
id Subscription id in the ARM id format. string