We recommend using Azure Native.
Azure v6.28.0 published on Friday, Oct 3, 2025 by Pulumi
azure.privatedns.getResolver
Gets information about an existing Private DNS Resolver.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const test = azure.privatedns.getResolver({
    name: "example",
    resourceGroupName: "example-resourcegroup-name",
});
import pulumi
import pulumi_azure as azure
test = azure.privatedns.get_resolver(name="example",
    resource_group_name="example-resourcegroup-name")
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/privatedns"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := privatedns.LookupResolver(ctx, &privatedns.LookupResolverArgs{
			Name:              "example",
			ResourceGroupName: "example-resourcegroup-name",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var test = Azure.PrivateDns.GetResolver.Invoke(new()
    {
        Name = "example",
        ResourceGroupName = "example-resourcegroup-name",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.privatedns.PrivatednsFunctions;
import com.pulumi.azure.privatedns.inputs.GetResolverArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var test = PrivatednsFunctions.getResolver(GetResolverArgs.builder()
            .name("example")
            .resourceGroupName("example-resourcegroup-name")
            .build());
    }
}
variables:
  test:
    fn::invoke:
      function: azure:privatedns:getResolver
      arguments:
        name: example
        resourceGroupName: example-resourcegroup-name
API Providers
This data source uses the following Azure API Providers:
- Microsoft.Network- 2022-07-01
Using getResolver
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getResolver(args: GetResolverArgs, opts?: InvokeOptions): Promise<GetResolverResult>
function getResolverOutput(args: GetResolverOutputArgs, opts?: InvokeOptions): Output<GetResolverResult>def get_resolver(name: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetResolverResult
def get_resolver_output(name: Optional[pulumi.Input[str]] = None,
                 resource_group_name: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetResolverResult]func LookupResolver(ctx *Context, args *LookupResolverArgs, opts ...InvokeOption) (*LookupResolverResult, error)
func LookupResolverOutput(ctx *Context, args *LookupResolverOutputArgs, opts ...InvokeOption) LookupResolverResultOutput> Note: This function is named LookupResolver in the Go SDK.
public static class GetResolver 
{
    public static Task<GetResolverResult> InvokeAsync(GetResolverArgs args, InvokeOptions? opts = null)
    public static Output<GetResolverResult> Invoke(GetResolverInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetResolverResult> getResolver(GetResolverArgs args, InvokeOptions options)
public static Output<GetResolverResult> getResolver(GetResolverArgs args, InvokeOptions options)
fn::invoke:
  function: azure:privatedns/getResolver:getResolver
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Name string
- Name of the Private DNS Resolver.
- ResourceGroup stringName 
- Name of the Resource Group where the Private DNS Resolver exists.
- Name string
- Name of the Private DNS Resolver.
- ResourceGroup stringName 
- Name of the Resource Group where the Private DNS Resolver exists.
- name String
- Name of the Private DNS Resolver.
- resourceGroup StringName 
- Name of the Resource Group where the Private DNS Resolver exists.
- name string
- Name of the Private DNS Resolver.
- resourceGroup stringName 
- Name of the Resource Group where the Private DNS Resolver exists.
- name str
- Name of the Private DNS Resolver.
- resource_group_ strname 
- Name of the Resource Group where the Private DNS Resolver exists.
- name String
- Name of the Private DNS Resolver.
- resourceGroup StringName 
- Name of the Resource Group where the Private DNS Resolver exists.
getResolver Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The Azure Region where the Private DNS Resolver exists.
- Name string
- ResourceGroup stringName 
- Dictionary<string, string>
- The tags assigned to the Private DNS Resolver.
- VirtualNetwork stringId 
- The ID of the Virtual Network that is linked to the Private DNS Resolver.
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The Azure Region where the Private DNS Resolver exists.
- Name string
- ResourceGroup stringName 
- map[string]string
- The tags assigned to the Private DNS Resolver.
- VirtualNetwork stringId 
- The ID of the Virtual Network that is linked to the Private DNS Resolver.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- The Azure Region where the Private DNS Resolver exists.
- name String
- resourceGroup StringName 
- Map<String,String>
- The tags assigned to the Private DNS Resolver.
- virtualNetwork StringId 
- The ID of the Virtual Network that is linked to the Private DNS Resolver.
- id string
- The provider-assigned unique ID for this managed resource.
- location string
- The Azure Region where the Private DNS Resolver exists.
- name string
- resourceGroup stringName 
- {[key: string]: string}
- The tags assigned to the Private DNS Resolver.
- virtualNetwork stringId 
- The ID of the Virtual Network that is linked to the Private DNS Resolver.
- id str
- The provider-assigned unique ID for this managed resource.
- location str
- The Azure Region where the Private DNS Resolver exists.
- name str
- resource_group_ strname 
- Mapping[str, str]
- The tags assigned to the Private DNS Resolver.
- virtual_network_ strid 
- The ID of the Virtual Network that is linked to the Private DNS Resolver.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- The Azure Region where the Private DNS Resolver exists.
- name String
- resourceGroup StringName 
- Map<String>
- The tags assigned to the Private DNS Resolver.
- virtualNetwork StringId 
- The ID of the Virtual Network that is linked to the Private DNS Resolver.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.
