We recommend using Azure Native.
Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi
azure.dns.getPtrRecord
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.dns.getPtrRecord({
    name: "test",
    zoneName: "test-zone",
    resourceGroupName: "test-rg",
});
export const dnsPtrRecordId = example.then(example => example.id);
import pulumi
import pulumi_azure as azure
example = azure.dns.get_ptr_record(name="test",
    zone_name="test-zone",
    resource_group_name="test-rg")
pulumi.export("dnsPtrRecordId", example.id)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/dns"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := dns.LookupPtrRecord(ctx, &dns.LookupPtrRecordArgs{
			Name:              "test",
			ZoneName:          "test-zone",
			ResourceGroupName: "test-rg",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("dnsPtrRecordId", example.Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = Azure.Dns.GetPtrRecord.Invoke(new()
    {
        Name = "test",
        ZoneName = "test-zone",
        ResourceGroupName = "test-rg",
    });
    return new Dictionary<string, object?>
    {
        ["dnsPtrRecordId"] = example.Apply(getPtrRecordResult => getPtrRecordResult.Id),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.dns.DnsFunctions;
import com.pulumi.azure.dns.inputs.GetPtrRecordArgs;
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 example = DnsFunctions.getPtrRecord(GetPtrRecordArgs.builder()
            .name("test")
            .zoneName("test-zone")
            .resourceGroupName("test-rg")
            .build());
        ctx.export("dnsPtrRecordId", example.applyValue(getPtrRecordResult -> getPtrRecordResult.id()));
    }
}
variables:
  example:
    fn::invoke:
      function: azure:dns:getPtrRecord
      arguments:
        name: test
        zoneName: test-zone
        resourceGroupName: test-rg
outputs:
  dnsPtrRecordId: ${example.id}
Using getPtrRecord
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 getPtrRecord(args: GetPtrRecordArgs, opts?: InvokeOptions): Promise<GetPtrRecordResult>
function getPtrRecordOutput(args: GetPtrRecordOutputArgs, opts?: InvokeOptions): Output<GetPtrRecordResult>def get_ptr_record(name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   zone_name: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetPtrRecordResult
def get_ptr_record_output(name: Optional[pulumi.Input[str]] = None,
                   resource_group_name: Optional[pulumi.Input[str]] = None,
                   zone_name: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetPtrRecordResult]func LookupPtrRecord(ctx *Context, args *LookupPtrRecordArgs, opts ...InvokeOption) (*LookupPtrRecordResult, error)
func LookupPtrRecordOutput(ctx *Context, args *LookupPtrRecordOutputArgs, opts ...InvokeOption) LookupPtrRecordResultOutput> Note: This function is named LookupPtrRecord in the Go SDK.
public static class GetPtrRecord 
{
    public static Task<GetPtrRecordResult> InvokeAsync(GetPtrRecordArgs args, InvokeOptions? opts = null)
    public static Output<GetPtrRecordResult> Invoke(GetPtrRecordInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPtrRecordResult> getPtrRecord(GetPtrRecordArgs args, InvokeOptions options)
public static Output<GetPtrRecordResult> getPtrRecord(GetPtrRecordArgs args, InvokeOptions options)
fn::invoke:
  function: azure:dns/getPtrRecord:getPtrRecord
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Name string
- The name of the DNS PTR Record.
- ResourceGroup stringName 
- Specifies the resource group where the DNS Zone (parent resource) exists.
- ZoneName string
- Specifies the DNS Zone where the resource exists.
- Name string
- The name of the DNS PTR Record.
- ResourceGroup stringName 
- Specifies the resource group where the DNS Zone (parent resource) exists.
- ZoneName string
- Specifies the DNS Zone where the resource exists.
- name String
- The name of the DNS PTR Record.
- resourceGroup StringName 
- Specifies the resource group where the DNS Zone (parent resource) exists.
- zoneName String
- Specifies the DNS Zone where the resource exists.
- name string
- The name of the DNS PTR Record.
- resourceGroup stringName 
- Specifies the resource group where the DNS Zone (parent resource) exists.
- zoneName string
- Specifies the DNS Zone where the resource exists.
- name str
- The name of the DNS PTR Record.
- resource_group_ strname 
- Specifies the resource group where the DNS Zone (parent resource) exists.
- zone_name str
- Specifies the DNS Zone where the resource exists.
- name String
- The name of the DNS PTR Record.
- resourceGroup StringName 
- Specifies the resource group where the DNS Zone (parent resource) exists.
- zoneName String
- Specifies the DNS Zone where the resource exists.
getPtrRecord Result
The following output properties are available:
- Fqdn string
- The FQDN of the DNS PTR Record.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Records List<string>
- List of Fully Qualified Domain Names.
- ResourceGroup stringName 
- Dictionary<string, string>
- A mapping of tags assigned to the resource.
- Ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- ZoneName string
- Fqdn string
- The FQDN of the DNS PTR Record.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Records []string
- List of Fully Qualified Domain Names.
- ResourceGroup stringName 
- map[string]string
- A mapping of tags assigned to the resource.
- Ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- ZoneName string
- fqdn String
- The FQDN of the DNS PTR Record.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- records List<String>
- List of Fully Qualified Domain Names.
- resourceGroup StringName 
- Map<String,String>
- A mapping of tags assigned to the resource.
- ttl Integer
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName String
- fqdn string
- The FQDN of the DNS PTR Record.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- records string[]
- List of Fully Qualified Domain Names.
- resourceGroup stringName 
- {[key: string]: string}
- A mapping of tags assigned to the resource.
- ttl number
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName string
- fqdn str
- The FQDN of the DNS PTR Record.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- records Sequence[str]
- List of Fully Qualified Domain Names.
- resource_group_ strname 
- Mapping[str, str]
- A mapping of tags assigned to the resource.
- ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- zone_name str
- fqdn String
- The FQDN of the DNS PTR Record.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- records List<String>
- List of Fully Qualified Domain Names.
- resourceGroup StringName 
- Map<String>
- A mapping of tags assigned to the resource.
- ttl Number
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName String
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.