PTRRecord
Enables you to manage DNS PTR Records within 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 examplePTRRecord = new Azure.PrivateDns.PTRRecord("examplePTRRecord", new Azure.PrivateDns.PTRRecordArgs
{
ZoneName = exampleZone.Name,
ResourceGroupName = exampleResourceGroup.Name,
Ttl = 300,
Records =
{
"test.example.com",
},
});
}
}
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.NewPTRRecord(ctx, "examplePTRRecord", &privatedns.PTRRecordArgs{
ZoneName: exampleZone.Name,
ResourceGroupName: exampleResourceGroup.Name,
Ttl: pulumi.Int(300),
Records: pulumi.StringArray{
pulumi.String("test.example.com"),
},
})
if err != nil {
return err
}
return nil
})
}
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_ptr_record = azure.privatedns.PTRRecord("examplePTRRecord",
zone_name=example_zone.name,
resource_group_name=example_resource_group.name,
ttl=300,
records=["test.example.com"])
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 examplePTRRecord = new azure.privatedns.PTRRecord("examplePTRRecord", {
zoneName: exampleZone.name,
resourceGroupName: exampleResourceGroup.name,
ttl: 300,
records: ["test.example.com"],
});
Create a PTRRecord Resource
new PTRRecord(name: string, args: PTRRecordArgs, opts?: CustomResourceOptions);
@overload
def PTRRecord(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
records: Optional[Sequence[str]] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
ttl: Optional[int] = None,
zone_name: Optional[str] = None)
@overload
def PTRRecord(resource_name: str,
args: PTRRecordArgs,
opts: Optional[ResourceOptions] = None)
func NewPTRRecord(ctx *Context, name string, args PTRRecordArgs, opts ...ResourceOption) (*PTRRecord, error)
public PTRRecord(string name, PTRRecordArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args PTRRecordArgs
- 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 PTRRecordArgs
- 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 PTRRecordArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PTRRecordArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
PTRRecord Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The PTRRecord resource accepts the following input properties:
- Records List<string>
- List of Fully Qualified Domain Names.
- Resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name string - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Records []string
- List of Fully Qualified Domain Names.
- Resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name string - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- records string[]
- List of Fully Qualified Domain Names.
- resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl number
- zone
Name string - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name string
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- records Sequence[str]
- List of Fully Qualified Domain Names.
- resource_
group_ strname - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl int
- zone_
name str - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name str
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the PTRRecord resource produces the following output properties:
Look up an Existing PTRRecord Resource
Get an existing PTRRecord 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?: PTRRecordState, opts?: CustomResourceOptions): PTRRecord
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
fqdn: Optional[str] = None,
name: Optional[str] = None,
records: Optional[Sequence[str]] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
ttl: Optional[int] = None,
zone_name: Optional[str] = None) -> PTRRecord
func GetPTRRecord(ctx *Context, name string, id IDInput, state *PTRRecordState, opts ...ResourceOption) (*PTRRecord, error)
public static PTRRecord Get(string name, Input<string> id, PTRRecordState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
- Fqdn string
- The FQDN of the DNS PTR Record.
- Name string
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- Records List<string>
- List of Fully Qualified Domain Names.
- Resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Ttl int
- Zone
Name string - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
- Fqdn string
- The FQDN of the DNS PTR Record.
- Name string
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- Records []string
- List of Fully Qualified Domain Names.
- Resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- Ttl int
- Zone
Name string - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
- fqdn string
- The FQDN of the DNS PTR Record.
- name string
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- records string[]
- List of Fully Qualified Domain Names.
- resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- ttl number
- zone
Name string - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
- fqdn str
- The FQDN of the DNS PTR Record.
- name str
- The name of the DNS PTR Record. Changing this forces a new resource to be created.
- records Sequence[str]
- List of Fully Qualified Domain Names.
- resource_
group_ strname - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- ttl int
- zone_
name str - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
Import
Private DNS PTR Records can be imported using the resource id
, e.g.
$ pulumi import azure:privatedns/pTRRecord:PTRRecord example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/2.0.192.in-addr.arpa/PTR/15
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.