Microsoft.Authorization privateLinkAssociations

Bicep resource definition

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

resource symbolicname 'Microsoft.Authorization/privateLinkAssociations@2020-05-01' = {
  name: 'string'
  properties: {
    privateLink: 'string'
    publicNetworkAccess: 'string'
  }
}

Property values

Microsoft.Authorization/privateLinkAssociations

Name Description Value
name The resource name string (required)
properties The properties of the PrivateLinkAssociation. PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

Name Description Value
privateLink The rmpl Resource ID. string
publicNetworkAccess 'Disabled'
'Enabled'

ARM template resource definition

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

{
  "type": "Microsoft.Authorization/privateLinkAssociations",
  "apiVersion": "2020-05-01",
  "name": "string",
  "properties": {
    "privateLink": "string",
    "publicNetworkAccess": "string"
  }
}

Property values

Microsoft.Authorization/privateLinkAssociations

Name Description Value
apiVersion The api version '2020-05-01'
name The resource name string (required)
properties The properties of the PrivateLinkAssociation. PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded
type The resource type 'Microsoft.Authorization/privateLinkAssociations'

PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

Name Description Value
privateLink The rmpl Resource ID. string
publicNetworkAccess 'Disabled'
'Enabled'

Terraform (AzAPI provider) resource definition

The privateLinkAssociations resource type can be deployed with operations that target:

  • Management groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Authorization/privateLinkAssociations resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Authorization/privateLinkAssociations@2020-05-01"
  name = "string"
  body = jsonencode({
    properties = {
      privateLink = "string"
      publicNetworkAccess = "string"
    }
  })
}

Property values

Microsoft.Authorization/privateLinkAssociations

Name Description Value
name The resource name string (required)
properties The properties of the PrivateLinkAssociation. PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded
type The resource type "Microsoft.Authorization/privateLinkAssociations@2020-05-01"

PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

Name Description Value
privateLink The rmpl Resource ID. string
publicNetworkAccess 'Disabled'
'Enabled'