Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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@2021-02-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 |
---|
Usage Examples
Azure Verified Modules
The following Azure Verified Modules can be used to deploy this resource type.
Module | Description |
---|---|
Network Security Perimeter | AVM Resource Module for Network Security Perimeter |
Azure Quickstart Samples
The following Azure Quickstart templates contain Bicep samples for deploying this resource type.
Bicep File | Description |
---|---|
Create a network security perimeter | This template creates a network security perimeter and it's associated resource for protecting an Azure key vault. |
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": "2021-02-01-preview",
"name": "string",
"location": "string",
"properties": {
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Network/networkSecurityPerimeters
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2021-02-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 |
---|
Usage Examples
Azure Quickstart Templates
The following Azure Quickstart templates deploy this resource type.
Template | Description |
---|---|
Create a network security perimeter |
This template creates a network security perimeter and it's associated resource for protecting an Azure key vault. |
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@2021-02-01-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
}
}
}
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@2021-02-01-preview" |
NetworkSecurityPerimeterProperties
Name | Description | Value |
---|
ResourceTags
Name | Description | Value |
---|