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.
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"
}
]
}
}
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 |
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[] |
Name | Description | Value |
---|---|---|
id | Subscription id in the ARM id format. | string |