We recommend using Azure Native.
azure.privatedns.TxtRecord
Explore with Pulumi AI
Enables you to manage DNS TXT Records within Azure Private DNS.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleZone = new azure.privatedns.Zone("example", {
    name: "contoso.com",
    resourceGroupName: example.name,
});
const exampleTxtRecord = new azure.privatedns.TxtRecord("example", {
    name: "test",
    resourceGroupName: example.name,
    zoneName: exampleZone.name,
    ttl: 300,
    records: [{
        value: "v=spf1 mx ~all",
    }],
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_zone = azure.privatedns.Zone("example",
    name="contoso.com",
    resource_group_name=example.name)
example_txt_record = azure.privatedns.TxtRecord("example",
    name="test",
    resource_group_name=example.name,
    zone_name=example_zone.name,
    ttl=300,
    records=[{
        "value": "v=spf1 mx ~all",
    }])
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"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 {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleZone, err := privatedns.NewZone(ctx, "example", &privatedns.ZoneArgs{
			Name:              pulumi.String("contoso.com"),
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		_, err = privatedns.NewTxtRecord(ctx, "example", &privatedns.TxtRecordArgs{
			Name:              pulumi.String("test"),
			ResourceGroupName: example.Name,
			ZoneName:          exampleZone.Name,
			Ttl:               pulumi.Int(300),
			Records: privatedns.TxtRecordRecordArray{
				&privatedns.TxtRecordRecordArgs{
					Value: pulumi.String("v=spf1 mx ~all"),
				},
			},
		})
		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 example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });
    var exampleZone = new Azure.PrivateDns.Zone("example", new()
    {
        Name = "contoso.com",
        ResourceGroupName = example.Name,
    });
    var exampleTxtRecord = new Azure.PrivateDns.TxtRecord("example", new()
    {
        Name = "test",
        ResourceGroupName = example.Name,
        ZoneName = exampleZone.Name,
        Ttl = 300,
        Records = new[]
        {
            new Azure.PrivateDns.Inputs.TxtRecordRecordArgs
            {
                Value = "v=spf1 mx ~all",
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.privatedns.Zone;
import com.pulumi.azure.privatedns.ZoneArgs;
import com.pulumi.azure.privatedns.TxtRecord;
import com.pulumi.azure.privatedns.TxtRecordArgs;
import com.pulumi.azure.privatedns.inputs.TxtRecordRecordArgs;
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) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());
        var exampleZone = new Zone("exampleZone", ZoneArgs.builder()
            .name("contoso.com")
            .resourceGroupName(example.name())
            .build());
        var exampleTxtRecord = new TxtRecord("exampleTxtRecord", TxtRecordArgs.builder()
            .name("test")
            .resourceGroupName(example.name())
            .zoneName(exampleZone.name())
            .ttl(300)
            .records(TxtRecordRecordArgs.builder()
                .value("v=spf1 mx ~all")
                .build())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleZone:
    type: azure:privatedns:Zone
    name: example
    properties:
      name: contoso.com
      resourceGroupName: ${example.name}
  exampleTxtRecord:
    type: azure:privatedns:TxtRecord
    name: example
    properties:
      name: test
      resourceGroupName: ${example.name}
      zoneName: ${exampleZone.name}
      ttl: 300
      records:
        - value: v=spf1 mx ~all
Create TxtRecord Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TxtRecord(name: string, args: TxtRecordArgs, opts?: CustomResourceOptions);@overload
def TxtRecord(resource_name: str,
              args: TxtRecordArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def TxtRecord(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              records: Optional[Sequence[TxtRecordRecordArgs]] = None,
              resource_group_name: Optional[str] = None,
              ttl: Optional[int] = None,
              zone_name: Optional[str] = None,
              name: Optional[str] = None,
              tags: Optional[Mapping[str, str]] = None)func NewTxtRecord(ctx *Context, name string, args TxtRecordArgs, opts ...ResourceOption) (*TxtRecord, error)public TxtRecord(string name, TxtRecordArgs args, CustomResourceOptions? opts = null)
public TxtRecord(String name, TxtRecordArgs args)
public TxtRecord(String name, TxtRecordArgs args, CustomResourceOptions options)
type: azure:privatedns:TxtRecord
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 TxtRecordArgs
- 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 TxtRecordArgs
- 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 TxtRecordArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TxtRecordArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TxtRecordArgs
- 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 azureTxtRecordResource = new Azure.PrivateDns.TxtRecord("azureTxtRecordResource", new()
{
    Records = new[]
    {
        new Azure.PrivateDns.Inputs.TxtRecordRecordArgs
        {
            Value = "string",
        },
    },
    ResourceGroupName = "string",
    Ttl = 0,
    ZoneName = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := privatedns.NewTxtRecord(ctx, "azureTxtRecordResource", &privatedns.TxtRecordArgs{
	Records: privatedns.TxtRecordRecordArray{
		&privatedns.TxtRecordRecordArgs{
			Value: pulumi.String("string"),
		},
	},
	ResourceGroupName: pulumi.String("string"),
	Ttl:               pulumi.Int(0),
	ZoneName:          pulumi.String("string"),
	Name:              pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var azureTxtRecordResource = new TxtRecord("azureTxtRecordResource", TxtRecordArgs.builder()
    .records(TxtRecordRecordArgs.builder()
        .value("string")
        .build())
    .resourceGroupName("string")
    .ttl(0)
    .zoneName("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
azure_txt_record_resource = azure.privatedns.TxtRecord("azureTxtRecordResource",
    records=[{
        "value": "string",
    }],
    resource_group_name="string",
    ttl=0,
    zone_name="string",
    name="string",
    tags={
        "string": "string",
    })
const azureTxtRecordResource = new azure.privatedns.TxtRecord("azureTxtRecordResource", {
    records: [{
        value: "string",
    }],
    resourceGroupName: "string",
    ttl: 0,
    zoneName: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
type: azure:privatedns:TxtRecord
properties:
    name: string
    records:
        - value: string
    resourceGroupName: string
    tags:
        string: string
    ttl: 0
    zoneName: string
TxtRecord 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 TxtRecord resource accepts the following input properties:
- Records
List<TxtRecord Record> 
- One or more recordblocks as defined below.
- ResourceGroup stringName 
- Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- ZoneName 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 TXT Record. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Records
[]TxtRecord Record Args 
- One or more recordblocks as defined below.
- ResourceGroup stringName 
- Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- ZoneName 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 TXT Record. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- records
List<TxtRecord Record> 
- One or more recordblocks as defined below.
- resourceGroup StringName 
- Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl Integer
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName 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 TXT Record. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- records
TxtRecord Record[] 
- One or more recordblocks as defined below.
- resourceGroup stringName 
- Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl number
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName 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 TXT Record. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- records
Sequence[TxtRecord Record Args] 
- One or more recordblocks as defined below.
- resource_group_ strname 
- Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- 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 TXT Record. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- records List<Property Map>
- One or more recordblocks as defined below.
- resourceGroup StringName 
- Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl Number
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName 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 TXT Record. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the TxtRecord resource produces the following output properties:
Look up Existing TxtRecord Resource
Get an existing TxtRecord 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?: TxtRecordState, opts?: CustomResourceOptions): TxtRecord@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        fqdn: Optional[str] = None,
        name: Optional[str] = None,
        records: Optional[Sequence[TxtRecordRecordArgs]] = None,
        resource_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        ttl: Optional[int] = None,
        zone_name: Optional[str] = None) -> TxtRecordfunc GetTxtRecord(ctx *Context, name string, id IDInput, state *TxtRecordState, opts ...ResourceOption) (*TxtRecord, error)public static TxtRecord Get(string name, Input<string> id, TxtRecordState? state, CustomResourceOptions? opts = null)public static TxtRecord get(String name, Output<String> id, TxtRecordState state, CustomResourceOptions options)resources:  _:    type: azure:privatedns:TxtRecord    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.
- Fqdn string
- The FQDN of the DNS TXT Record.
- Name string
- The name of the DNS TXT Record. Changing this forces a new resource to be created.
- Records
List<TxtRecord Record> 
- One or more recordblocks as defined below.
- ResourceGroup 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
- The Time To Live (TTL) of the DNS record in seconds.
- ZoneName 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 TXT Record.
- Name string
- The name of the DNS TXT Record. Changing this forces a new resource to be created.
- Records
[]TxtRecord Record Args 
- One or more recordblocks as defined below.
- ResourceGroup 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
- The Time To Live (TTL) of the DNS record in seconds.
- ZoneName 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 TXT Record.
- name String
- The name of the DNS TXT Record. Changing this forces a new resource to be created.
- records
List<TxtRecord Record> 
- One or more recordblocks as defined below.
- resourceGroup 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 Integer
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName 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 TXT Record.
- name string
- The name of the DNS TXT Record. Changing this forces a new resource to be created.
- records
TxtRecord Record[] 
- One or more recordblocks as defined below.
- resourceGroup 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
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName 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 TXT Record.
- name str
- The name of the DNS TXT Record. Changing this forces a new resource to be created.
- records
Sequence[TxtRecord Record Args] 
- One or more recordblocks as defined below.
- 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
- The Time To Live (TTL) of the DNS record in seconds.
- zone_name str
- 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 TXT Record.
- name String
- The name of the DNS TXT Record. Changing this forces a new resource to be created.
- records List<Property Map>
- One or more recordblocks as defined below.
- resourceGroup StringName 
- Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
- ttl Number
- The Time To Live (TTL) of the DNS record in seconds.
- zoneName String
- Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
Supporting Types
TxtRecordRecord, TxtRecordRecordArgs      
- Value string
- The value of the TXT record. Max length: 1024 characters
- Value string
- The value of the TXT record. Max length: 1024 characters
- value String
- The value of the TXT record. Max length: 1024 characters
- value string
- The value of the TXT record. Max length: 1024 characters
- value str
- The value of the TXT record. Max length: 1024 characters
- value String
- The value of the TXT record. Max length: 1024 characters
Import
Private DNS TXT Records can be imported using the resource id, e.g.
$ pulumi import azure:privatedns/txtRecord:TxtRecord test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/contoso.com/TXT/test
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.