Microsoft.Network networkSecurityPerimeters 2024-06-01-preview

Bicep resource definition

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

resource symbolicname 'Microsoft.Network/networkSecurityPerimeters@2024-06-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

Constraints:
Max length = 80
Pattern = (^[a-zA-Z0-9]+[a-zA-Z0-9_.-]*[a-zA-Z0-9_]+$)|(^[a-zA-Z0-9]$) (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

ARM template resource definition

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

{
  "type": "Microsoft.Network/networkSecurityPerimeters",
  "apiVersion": "2024-06-01-preview",
  "name": "string",
  "location": "string",
  "properties": {
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.Network/networkSecurityPerimeters

Name Description Value
apiVersion The api version '2024-06-01-preview'
location Resource location. string
name The resource name string

Constraints:
Max length = 80
Pattern = (^[a-zA-Z0-9]+[a-zA-Z0-9_.-]*[a-zA-Z0-9_]+$)|(^[a-zA-Z0-9]$) (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

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@2024-06-01-preview"
  name = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = jsonencode({
    properties = {
    }
  })
}

Property Values

Microsoft.Network/networkSecurityPerimeters

Name Description Value
location Resource location. string
name The resource name string

Constraints:
Max length = 80
Pattern = (^[a-zA-Z0-9]+[a-zA-Z0-9_.-]*[a-zA-Z0-9_]+$)|(^[a-zA-Z0-9]$) (required)
properties The network security perimeter properties NetworkSecurityPerimeterProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Network/networkSecurityPerimeters@2024-06-01-preview"

NetworkSecurityPerimeterProperties

Name Description Value

ResourceTags

Name Description Value