Microsoft.Authorization resourceManagementPrivateLinks
Bicep resource definition
The resourceManagementPrivateLinks 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.Authorization/resourceManagementPrivateLinks resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Authorization/resourceManagementPrivateLinks@2020-05-01' = {
name: 'string'
location: 'string'
}
Property values
resourceManagementPrivateLinks
Name | Description | Value |
---|---|---|
name | The resource name | string (required) |
location | the region to create private link association. | string |
ARM template resource definition
The resourceManagementPrivateLinks 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.Authorization/resourceManagementPrivateLinks resource, add the following JSON to your template.
{
"type": "Microsoft.Authorization/resourceManagementPrivateLinks",
"apiVersion": "2020-05-01",
"name": "string",
"location": "string"
}
Property values
resourceManagementPrivateLinks
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Authorization/resourceManagementPrivateLinks' |
apiVersion | The resource api version | '2020-05-01' |
name | The resource name | string (required) |
location | the region to create private link association. | string |
Terraform (AzAPI provider) resource definition
The resourceManagementPrivateLinks 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.Authorization/resourceManagementPrivateLinks resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Authorization/resourceManagementPrivateLinks@2020-05-01"
name = "string"
location = "string"
parent_id = "string"
}
Property values
resourceManagementPrivateLinks
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.Authorization/resourceManagementPrivateLinks@2020-05-01" |
name | The resource name | string (required) |
location | the region to create private link association. | string |
parent_id | To deploy to a resource group, use the ID of that resource group. | string (required) |