Microsoft.Network networkSecurityPerimeters
Bicep resource definition
The networkSecurityPerimeters resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Network/networkSecurityPerimeters resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Network/networkSecurityPerimeters@2023-08-01-preview' = {
location: 'string'
name: 'string'
properties: {}
tags: {
{customized property}: 'string'
}
}
Property values
Microsoft.Network/networkSecurityPerimeters
Name | Description | Value |
---|---|---|
location | Resource location. | string |
name | The resource name | string (required) |
properties | The network security perimeter properties | NetworkSecurityPerimeterProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
NetworkSecurityPerimeterProperties
Name | Description | Value |
---|
ResourceTags
Name | Description | Value |
---|
ARM template resource definition
The networkSecurityPerimeters resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Network/networkSecurityPerimeters resource, add the following JSON to your template.
{
"type": "Microsoft.Network/networkSecurityPerimeters",
"apiVersion": "2023-08-01-preview",
"name": "string",
"location": "string",
"properties": {
},
"tags": {
"{customized property}": "string"
}
}
Property values
Microsoft.Network/networkSecurityPerimeters
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2023-08-01-preview' |
location | Resource location. | string |
name | The resource name | string (required) |
properties | The network security perimeter properties | NetworkSecurityPerimeterProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Network/networkSecurityPerimeters' |
NetworkSecurityPerimeterProperties
Name | Description | Value |
---|
ResourceTags
Name | Description | Value |
---|
Terraform (AzAPI provider) resource definition
The networkSecurityPerimeters 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 resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/networkSecurityPerimeters@2023-08-01-preview"
name = "string"
location = "string"
body = jsonencode({
properties = {
}
})
tags = {
{customized property} = "string"
}
}
Property values
Microsoft.Network/networkSecurityPerimeters
Name | Description | Value |
---|---|---|
location | Resource location. | string |
name | The resource name | string (required) |
properties | The network security perimeter properties | NetworkSecurityPerimeterProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Network/networkSecurityPerimeters@2023-08-01-preview" |
NetworkSecurityPerimeterProperties
Name | Description | Value |
---|
ResourceTags
Name | Description | Value |
---|