We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Enables you to manage Private DNS zone Virtual Network Links. These Links enable DNS resolution and registration inside Azure Virtual Networks using Azure Private DNS.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleZone = new Azure.PrivateDns.Zone("exampleZone", new Azure.PrivateDns.ZoneArgs
{
ResourceGroupName = exampleResourceGroup.Name,
});
var exampleZoneVirtualNetworkLink = new Azure.PrivateDns.ZoneVirtualNetworkLink("exampleZoneVirtualNetworkLink", new Azure.PrivateDns.ZoneVirtualNetworkLinkArgs
{
ResourceGroupName = exampleResourceGroup.Name,
PrivateDnsZoneName = exampleZone.Name,
VirtualNetworkId = azurerm_virtual_network.Example.Id,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/privatedns"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleZone, err := privatedns.NewZone(ctx, "exampleZone", &privatedns.ZoneArgs{
ResourceGroupName: exampleResourceGroup.Name,
})
if err != nil {
return err
}
_, err = privatedns.NewZoneVirtualNetworkLink(ctx, "exampleZoneVirtualNetworkLink", &privatedns.ZoneVirtualNetworkLinkArgs{
ResourceGroupName: exampleResourceGroup.Name,
PrivateDnsZoneName: exampleZone.Name,
VirtualNetworkId: pulumi.Any(azurerm_virtual_network.Example.Id),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleZone = new azure.privatedns.Zone("exampleZone", {resourceGroupName: exampleResourceGroup.name});
const exampleZoneVirtualNetworkLink = new azure.privatedns.ZoneVirtualNetworkLink("exampleZoneVirtualNetworkLink", {
resourceGroupName: exampleResourceGroup.name,
privateDnsZoneName: exampleZone.name,
virtualNetworkId: azurerm_virtual_network.example.id,
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_zone = azure.privatedns.Zone("exampleZone", resource_group_name=example_resource_group.name)
example_zone_virtual_network_link = azure.privatedns.ZoneVirtualNetworkLink("exampleZoneVirtualNetworkLink",
resource_group_name=example_resource_group.name,
private_dns_zone_name=example_zone.name,
virtual_network_id=azurerm_virtual_network["example"]["id"])
Example coming soon!
Create ZoneVirtualNetworkLink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ZoneVirtualNetworkLink(name: string, args: ZoneVirtualNetworkLinkArgs, opts?: CustomResourceOptions);@overload
def ZoneVirtualNetworkLink(resource_name: str,
args: ZoneVirtualNetworkLinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ZoneVirtualNetworkLink(resource_name: str,
opts: Optional[ResourceOptions] = None,
private_dns_zone_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
virtual_network_id: Optional[str] = None,
name: Optional[str] = None,
registration_enabled: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None)func NewZoneVirtualNetworkLink(ctx *Context, name string, args ZoneVirtualNetworkLinkArgs, opts ...ResourceOption) (*ZoneVirtualNetworkLink, error)public ZoneVirtualNetworkLink(string name, ZoneVirtualNetworkLinkArgs args, CustomResourceOptions? opts = null)
public ZoneVirtualNetworkLink(String name, ZoneVirtualNetworkLinkArgs args)
public ZoneVirtualNetworkLink(String name, ZoneVirtualNetworkLinkArgs args, CustomResourceOptions options)
type: azure:privatedns:ZoneVirtualNetworkLink
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ZoneVirtualNetworkLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ZoneVirtualNetworkLinkArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ZoneVirtualNetworkLinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZoneVirtualNetworkLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZoneVirtualNetworkLinkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var zoneVirtualNetworkLinkResource = new Azure.PrivateDns.ZoneVirtualNetworkLink("zoneVirtualNetworkLinkResource", new()
{
PrivateDnsZoneName = "string",
ResourceGroupName = "string",
VirtualNetworkId = "string",
Name = "string",
RegistrationEnabled = false,
Tags =
{
{ "string", "string" },
},
});
example, err := privatedns.NewZoneVirtualNetworkLink(ctx, "zoneVirtualNetworkLinkResource", &privatedns.ZoneVirtualNetworkLinkArgs{
PrivateDnsZoneName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
VirtualNetworkId: pulumi.String("string"),
Name: pulumi.String("string"),
RegistrationEnabled: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var zoneVirtualNetworkLinkResource = new ZoneVirtualNetworkLink("zoneVirtualNetworkLinkResource", ZoneVirtualNetworkLinkArgs.builder()
.privateDnsZoneName("string")
.resourceGroupName("string")
.virtualNetworkId("string")
.name("string")
.registrationEnabled(false)
.tags(Map.of("string", "string"))
.build());
zone_virtual_network_link_resource = azure.privatedns.ZoneVirtualNetworkLink("zoneVirtualNetworkLinkResource",
private_dns_zone_name="string",
resource_group_name="string",
virtual_network_id="string",
name="string",
registration_enabled=False,
tags={
"string": "string",
})
const zoneVirtualNetworkLinkResource = new azure.privatedns.ZoneVirtualNetworkLink("zoneVirtualNetworkLinkResource", {
privateDnsZoneName: "string",
resourceGroupName: "string",
virtualNetworkId: "string",
name: "string",
registrationEnabled: false,
tags: {
string: "string",
},
});
type: azure:privatedns:ZoneVirtualNetworkLink
properties:
name: string
privateDnsZoneName: string
registrationEnabled: false
resourceGroupName: string
tags:
string: string
virtualNetworkId: string
ZoneVirtualNetworkLink Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ZoneVirtualNetworkLink resource accepts the following input properties:
- Private
Dns stringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- Resource
Group stringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- Name string
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- Registration
Enabled bool - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Private
Dns stringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- Resource
Group stringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- Name string
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- Registration
Enabled bool - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - map[string]string
- A mapping of tags to assign to the resource.
- private
Dns StringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- resource
Group StringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name String
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- registration
Enabled Boolean - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - Map<String,String>
- A mapping of tags to assign to the resource.
- private
Dns stringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- resource
Group stringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name string
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- registration
Enabled boolean - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- private_
dns_ strzone_ name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- resource_
group_ strname - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name str
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- registration_
enabled bool - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- private
Dns StringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- resource
Group StringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name String
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- registration
Enabled Boolean - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ZoneVirtualNetworkLink resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ZoneVirtualNetworkLink Resource
Get an existing ZoneVirtualNetworkLink resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ZoneVirtualNetworkLinkState, opts?: CustomResourceOptions): ZoneVirtualNetworkLink@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
private_dns_zone_name: Optional[str] = None,
registration_enabled: Optional[bool] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
virtual_network_id: Optional[str] = None) -> ZoneVirtualNetworkLinkfunc GetZoneVirtualNetworkLink(ctx *Context, name string, id IDInput, state *ZoneVirtualNetworkLinkState, opts ...ResourceOption) (*ZoneVirtualNetworkLink, error)public static ZoneVirtualNetworkLink Get(string name, Input<string> id, ZoneVirtualNetworkLinkState? state, CustomResourceOptions? opts = null)public static ZoneVirtualNetworkLink get(String name, Output<String> id, ZoneVirtualNetworkLinkState state, CustomResourceOptions options)resources: _: type: azure:privatedns:ZoneVirtualNetworkLink get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Name string
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- Private
Dns stringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- Registration
Enabled bool - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - Resource
Group stringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Virtual
Network stringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- Name string
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- Private
Dns stringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- Registration
Enabled bool - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - Resource
Group stringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- Virtual
Network stringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name String
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- private
Dns StringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- registration
Enabled Boolean - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - resource
Group StringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- virtual
Network StringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name string
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- private
Dns stringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- registration
Enabled boolean - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - resource
Group stringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- virtual
Network stringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name str
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- private_
dns_ strzone_ name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- registration_
enabled bool - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - resource_
group_ strname - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- virtual_
network_ strid - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
- name String
- The name of the Private DNS Zone Virtual Network Link. Changing this forces a new resource to be created.
- private
Dns StringZone Name - The name of the Private DNS zone (without a terminating dot). Changing this forces a new resource to be created.
- registration
Enabled Boolean - Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? Defaults to
false. - resource
Group StringName - Specifies the resource group where the Private DNS Zone exists. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
- virtual
Network StringId - The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created.
Import
Private DNS Zone Virtual Network Links can be imported using the resource id, e.g.
$ pulumi import azure:privatedns/zoneVirtualNetworkLink:ZoneVirtualNetworkLink link1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1.com/virtualNetworkLinks/myVnetLink1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi