Microsoft.Authorization dataPolicyManifests
Bicep resource definition
The dataPolicyManifests resource type can exist at: Tenants
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the existing
keyword.
Resource format
To create a Microsoft.Authorization/dataPolicyManifests resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Authorization/dataPolicyManifests@2020-09-01' existing = {
name: 'string'
}
Property values
dataPolicyManifests
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | string (required) |
ARM template resource definition
The dataPolicyManifests resource type can exist at: Tenants
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the reference
function.
Resource format
To create a Microsoft.Authorization/dataPolicyManifests resource, add the following JSON to your template.
[reference(resourceId('Microsoft.Authorization/dataPolicyManifests', '{name}'), '2020-09-01')]
Property values
dataPolicyManifests
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | string (required) |
Terraform (AzAPI provider) resource definition
The dataPolicyManifests resource type can exist at: Tenants
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the data
keyword.
Resource format
To create a Microsoft.Authorization/dataPolicyManifests resource, add the following Terraform to your template.
data "azapi_resource" "symbolicname" {
type = "Microsoft.Authorization/dataPolicyManifests@2020-09-01"
name = "string"
parent_id = "string"
}
Property values
dataPolicyManifests
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | string (required) |
parent_id | To reference a tenant, use / . |
string (required) |