Microsoft.Network dnsForwardingRulesets/virtualNetworkLinks

Bicep resource definition

The dnsForwardingRulesets/virtualNetworkLinks resource type can be deployed to:

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

Resource format

To create a Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks@2022-07-01' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    metadata: {}
    virtualNetwork: {
      id: 'string'
    }
  }
}

Property values

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: dnsForwardingRulesets
properties Properties of the virtual network link. VirtualNetworkLinkProperties (required)

VirtualNetworkLinkProperties

Name Description Value
metadata Metadata attached to the virtual network link. object
virtualNetwork The reference to the virtual network. This cannot be changed after creation. SubResource (required)

SubResource

Name Description Value
id Resource ID. string (required)

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Azure DNS Private Resolver

Deploy to Azure
This template provisions Azure DNS Private Resolver in a virtual network with required forwarding ruleset and rules. It creates a new virtual network with two subnets, and deploy Azure DNS Private Resolver in this VNET.

ARM template resource definition

The dnsForwardingRulesets/virtualNetworkLinks resource type can be deployed to:

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

Resource format

To create a Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks resource, add the following JSON to your template.

{
  "type": "Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks",
  "apiVersion": "2022-07-01",
  "name": "string",
  "properties": {
    "metadata": {},
    "virtualNetwork": {
      "id": "string"
    }
  }
}

Property values

Name Description Value
type The resource type 'Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks'
apiVersion The resource api version '2022-07-01'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
properties Properties of the virtual network link. VirtualNetworkLinkProperties (required)

VirtualNetworkLinkProperties

Name Description Value
metadata Metadata attached to the virtual network link. object
virtualNetwork The reference to the virtual network. This cannot be changed after creation. SubResource (required)

SubResource

Name Description Value
id Resource ID. string (required)

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Azure DNS Private Resolver

Deploy to Azure
This template provisions Azure DNS Private Resolver in a virtual network with required forwarding ruleset and rules. It creates a new virtual network with two subnets, and deploy Azure DNS Private Resolver in this VNET.

Terraform (AzAPI provider) resource definition

The dnsForwardingRulesets/virtualNetworkLinks resource type can be deployed to:

  • Resource groups

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

Resource format

To create a Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks@2022-07-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      metadata = {}
      virtualNetwork = {
        id = "string"
      }
    }
  })
}

Property values

Name Description Value
type The resource type "Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks@2022-07-01"
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: dnsForwardingRulesets
properties Properties of the virtual network link. VirtualNetworkLinkProperties (required)

VirtualNetworkLinkProperties

Name Description Value
metadata Metadata attached to the virtual network link. object
virtualNetwork The reference to the virtual network. This cannot be changed after creation. SubResource (required)

SubResource

Name Description Value
id Resource ID. string (required)