Microsoft.Authorization policyassignments 2016-04-01
Bicep resource definition
The policyassignments 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.Authorization/policyassignments resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Authorization/policyassignments@2016-04-01' = {
scope: resourceSymbolicName or scope
name: 'string'
properties: {
displayName: 'string'
policyDefinitionId: 'string'
scope: 'string'
}
}
Property values
Microsoft.Authorization/policyassignments
Name | Description | Value |
---|---|---|
name | The resource name | string (required) |
properties | Properties for the policy assignment. | PolicyAssignmentProperties |
scope | Use when creating a resource at a scope that is different than the deployment scope. | Set this property to the symbolic name of a resource to apply the extension resource. |
PolicyAssignmentProperties
Name | Description | Value |
---|---|---|
displayName | The display name of the policy assignment. | string |
policyDefinitionId | The ID of the policy definition. | string |
scope | The scope for the policy assignment. | string |
Quickstart samples
The following quickstart samples deploy this resource type.
Bicep File | Description |
---|---|
Assign built-in policy to audit VM managed disks | This template assigns a built-in policy to a resource group scope to audit virtual machine (VM) managed disks. |
Create an Azure Virtual Network Manager and sample VNETs | This template deploys an Azure Virtual Network Manager and sample virtual networks into the named resource group. It supports multiple connectivity topologies and network group membership types. |
Deploy a Policy Def and Assign to Multiple Mgmt Groups | This template is a management group level template that will create a policy definition and assign that policy to multiple management groups. |
Deploy a policy definition and assign to a management group | This template is a management group level template that will create a policy definition and assign that policy to the target management group. Currently, this template cannot be deployed via the Azure Portal. |
ARM template resource definition
The policyassignments 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.Authorization/policyassignments resource, add the following JSON to your template.
{
"type": "Microsoft.Authorization/policyassignments",
"apiVersion": "2016-04-01",
"name": "string",
"properties": {
"displayName": "string",
"policyDefinitionId": "string",
"scope": "string"
}
}
Property values
Microsoft.Authorization/policyassignments
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2016-04-01' |
name | The resource name | string (required) |
properties | Properties for the policy assignment. | PolicyAssignmentProperties |
type | The resource type | 'Microsoft.Authorization/policyassignments' |
PolicyAssignmentProperties
Name | Description | Value |
---|---|---|
displayName | The display name of the policy assignment. | string |
policyDefinitionId | The ID of the policy definition. | string |
scope | The scope for the policy assignment. | string |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Assign a built-in policy to an existing resource group |
This template assigns a built-in policy to an existing resource group. |
Assign built-in policy to audit VM managed disks |
This template assigns a built-in policy to a resource group scope to audit virtual machine (VM) managed disks. |
Create an Azure Virtual Network Manager and sample VNETs |
This template deploys an Azure Virtual Network Manager and sample virtual networks into the named resource group. It supports multiple connectivity topologies and network group membership types. |
Deploy a Policy Def and Assign to Multiple Mgmt Groups |
This template is a management group level template that will create a policy definition and assign that policy to multiple management groups. |
Deploy a policy definition and assign to a management group |
This template is a management group level template that will create a policy definition and assign that policy to the target management group. Currently, this template cannot be deployed via the Azure Portal. |
Terraform (AzAPI provider) resource definition
The policyassignments 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.Authorization/policyassignments resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Authorization/policyassignments@2016-04-01"
name = "string"
parent_id = "string"
body = jsonencode({
properties = {
displayName = "string"
policyDefinitionId = "string"
scope = "string"
}
})
}
Property values
Microsoft.Authorization/policyassignments
Name | Description | Value |
---|---|---|
name | The resource name | string (required) |
parent_id | The ID of the resource to apply this extension resource to. | string (required) |
properties | Properties for the policy assignment. | PolicyAssignmentProperties |
type | The resource type | "Microsoft.Authorization/policyassignments@2016-04-01" |
PolicyAssignmentProperties
Name | Description | Value |
---|---|---|
displayName | The display name of the policy assignment. | string |
policyDefinitionId | The ID of the policy definition. | string |
scope | The scope for the policy assignment. | string |