azure logo
Azure Classic v5.43.0, May 6 23

azure.dns.CaaRecord

Explore with Pulumi AI

Import

CAA records can be imported using the resource id, e.g.

 $ pulumi import azure:dns/caaRecord:CaaRecord example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1/CAA/myrecord1

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleZone = new Azure.Dns.Zone("exampleZone", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
    });

    var exampleCaaRecord = new Azure.Dns.CaaRecord("exampleCaaRecord", new()
    {
        ZoneName = exampleZone.Name,
        ResourceGroupName = exampleResourceGroup.Name,
        Ttl = 300,
        Records = new[]
        {
            new Azure.Dns.Inputs.CaaRecordRecordArgs
            {
                Flags = 0,
                Tag = "issue",
                Value = "example.com",
            },
            new Azure.Dns.Inputs.CaaRecordRecordArgs
            {
                Flags = 0,
                Tag = "issue",
                Value = "example.net",
            },
            new Azure.Dns.Inputs.CaaRecordRecordArgs
            {
                Flags = 0,
                Tag = "issuewild",
                Value = ";",
            },
            new Azure.Dns.Inputs.CaaRecordRecordArgs
            {
                Flags = 0,
                Tag = "iodef",
                Value = "mailto:user@nonexisting.tld",
            },
        },
        Tags = 
        {
            { "Environment", "Production" },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/dns"
	"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 := dns.NewZone(ctx, "exampleZone", &dns.ZoneArgs{
			ResourceGroupName: exampleResourceGroup.Name,
		})
		if err != nil {
			return err
		}
		_, err = dns.NewCaaRecord(ctx, "exampleCaaRecord", &dns.CaaRecordArgs{
			ZoneName:          exampleZone.Name,
			ResourceGroupName: exampleResourceGroup.Name,
			Ttl:               pulumi.Int(300),
			Records: dns.CaaRecordRecordArray{
				&dns.CaaRecordRecordArgs{
					Flags: pulumi.Int(0),
					Tag:   pulumi.String("issue"),
					Value: pulumi.String("example.com"),
				},
				&dns.CaaRecordRecordArgs{
					Flags: pulumi.Int(0),
					Tag:   pulumi.String("issue"),
					Value: pulumi.String("example.net"),
				},
				&dns.CaaRecordRecordArgs{
					Flags: pulumi.Int(0),
					Tag:   pulumi.String("issuewild"),
					Value: pulumi.String(";"),
				},
				&dns.CaaRecordRecordArgs{
					Flags: pulumi.Int(0),
					Tag:   pulumi.String("iodef"),
					Value: pulumi.String("mailto:user@nonexisting.tld"),
				},
			},
			Tags: pulumi.StringMap{
				"Environment": pulumi.String("Production"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
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.dns.Zone;
import com.pulumi.azure.dns.ZoneArgs;
import com.pulumi.azure.dns.CaaRecord;
import com.pulumi.azure.dns.CaaRecordArgs;
import com.pulumi.azure.dns.inputs.CaaRecordRecordArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleZone = new Zone("exampleZone", ZoneArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .build());

        var exampleCaaRecord = new CaaRecord("exampleCaaRecord", CaaRecordArgs.builder()        
            .zoneName(exampleZone.name())
            .resourceGroupName(exampleResourceGroup.name())
            .ttl(300)
            .records(            
                CaaRecordRecordArgs.builder()
                    .flags(0)
                    .tag("issue")
                    .value("example.com")
                    .build(),
                CaaRecordRecordArgs.builder()
                    .flags(0)
                    .tag("issue")
                    .value("example.net")
                    .build(),
                CaaRecordRecordArgs.builder()
                    .flags(0)
                    .tag("issuewild")
                    .value(";")
                    .build(),
                CaaRecordRecordArgs.builder()
                    .flags(0)
                    .tag("iodef")
                    .value("mailto:user@nonexisting.tld")
                    .build())
            .tags(Map.of("Environment", "Production"))
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_zone = azure.dns.Zone("exampleZone", resource_group_name=example_resource_group.name)
example_caa_record = azure.dns.CaaRecord("exampleCaaRecord",
    zone_name=example_zone.name,
    resource_group_name=example_resource_group.name,
    ttl=300,
    records=[
        azure.dns.CaaRecordRecordArgs(
            flags=0,
            tag="issue",
            value="example.com",
        ),
        azure.dns.CaaRecordRecordArgs(
            flags=0,
            tag="issue",
            value="example.net",
        ),
        azure.dns.CaaRecordRecordArgs(
            flags=0,
            tag="issuewild",
            value=";",
        ),
        azure.dns.CaaRecordRecordArgs(
            flags=0,
            tag="iodef",
            value="mailto:user@nonexisting.tld",
        ),
    ],
    tags={
        "Environment": "Production",
    })
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.dns.Zone("exampleZone", {resourceGroupName: exampleResourceGroup.name});
const exampleCaaRecord = new azure.dns.CaaRecord("exampleCaaRecord", {
    zoneName: exampleZone.name,
    resourceGroupName: exampleResourceGroup.name,
    ttl: 300,
    records: [
        {
            flags: 0,
            tag: "issue",
            value: "example.com",
        },
        {
            flags: 0,
            tag: "issue",
            value: "example.net",
        },
        {
            flags: 0,
            tag: "issuewild",
            value: ";",
        },
        {
            flags: 0,
            tag: "iodef",
            value: "mailto:user@nonexisting.tld",
        },
    ],
    tags: {
        Environment: "Production",
    },
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleZone:
    type: azure:dns:Zone
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
  exampleCaaRecord:
    type: azure:dns:CaaRecord
    properties:
      zoneName: ${exampleZone.name}
      resourceGroupName: ${exampleResourceGroup.name}
      ttl: 300
      records:
        - flags: 0
          tag: issue
          value: example.com
        - flags: 0
          tag: issue
          value: example.net
        - flags: 0
          tag: issuewild
          value: ;
        - flags: 0
          tag: iodef
          value: mailto:user@nonexisting.tld
      tags:
        Environment: Production

Create CaaRecord Resource

new CaaRecord(name: string, args: CaaRecordArgs, opts?: CustomResourceOptions);
@overload
def CaaRecord(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              name: Optional[str] = None,
              records: Optional[Sequence[CaaRecordRecordArgs]] = None,
              resource_group_name: Optional[str] = None,
              tags: Optional[Mapping[str, str]] = None,
              ttl: Optional[int] = None,
              zone_name: Optional[str] = None)
@overload
def CaaRecord(resource_name: str,
              args: CaaRecordArgs,
              opts: Optional[ResourceOptions] = None)
func NewCaaRecord(ctx *Context, name string, args CaaRecordArgs, opts ...ResourceOption) (*CaaRecord, error)
public CaaRecord(string name, CaaRecordArgs args, CustomResourceOptions? opts = null)
public CaaRecord(String name, CaaRecordArgs args)
public CaaRecord(String name, CaaRecordArgs args, CustomResourceOptions options)
type: azure:dns:CaaRecord
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args CaaRecordArgs
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 CaaRecordArgs
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 CaaRecordArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args CaaRecordArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args CaaRecordArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

CaaRecord Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The CaaRecord resource accepts the following input properties:

Records List<CaaRecordRecordArgs>

A list of values that make up the CAA record. Each record block supports fields documented below.

ResourceGroupName string

Specifies the resource group where the DNS Zone (parent 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

Name string

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

Records []CaaRecordRecordArgs

A list of values that make up the CAA record. Each record block supports fields documented below.

ResourceGroupName string

Specifies the resource group where the DNS Zone (parent 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

Name string

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

Tags map[string]string

A mapping of tags to assign to the resource.

records List<CaaRecordRecordArgs>

A list of values that make up the CAA record. Each record block supports fields documented below.

resourceGroupName String

Specifies the resource group where the DNS Zone (parent 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

name String

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

tags Map<String,String>

A mapping of tags to assign to the resource.

records CaaRecordRecordArgs[]

A list of values that make up the CAA record. Each record block supports fields documented below.

resourceGroupName string

Specifies the resource group where the DNS Zone (parent 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

name string

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

records Sequence[CaaRecordRecordArgs]

A list of values that make up the CAA record. Each record block supports fields documented below.

resource_group_name str

Specifies the resource group where the DNS Zone (parent 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

name str

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

records List<Property Map>

A list of values that make up the CAA record. Each record block supports fields documented below.

resourceGroupName String

Specifies the resource group where the DNS Zone (parent 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

name String

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

tags Map<String>

A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the CaaRecord resource produces the following output properties:

Fqdn string

The FQDN of the DNS CAA Record.

Id string

The provider-assigned unique ID for this managed resource.

Fqdn string

The FQDN of the DNS CAA Record.

Id string

The provider-assigned unique ID for this managed resource.

fqdn String

The FQDN of the DNS CAA Record.

id String

The provider-assigned unique ID for this managed resource.

fqdn string

The FQDN of the DNS CAA Record.

id string

The provider-assigned unique ID for this managed resource.

fqdn str

The FQDN of the DNS CAA Record.

id str

The provider-assigned unique ID for this managed resource.

fqdn String

The FQDN of the DNS CAA Record.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing CaaRecord Resource

Get an existing CaaRecord 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?: CaaRecordState, opts?: CustomResourceOptions): CaaRecord
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        fqdn: Optional[str] = None,
        name: Optional[str] = None,
        records: Optional[Sequence[CaaRecordRecordArgs]] = None,
        resource_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        ttl: Optional[int] = None,
        zone_name: Optional[str] = None) -> CaaRecord
func GetCaaRecord(ctx *Context, name string, id IDInput, state *CaaRecordState, opts ...ResourceOption) (*CaaRecord, error)
public static CaaRecord Get(string name, Input<string> id, CaaRecordState? state, CustomResourceOptions? opts = null)
public static CaaRecord get(String name, Output<String> id, CaaRecordState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
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.
The following state arguments are supported:
Fqdn string

The FQDN of the DNS CAA Record.

Name string

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

Records List<CaaRecordRecordArgs>

A list of values that make up the CAA record. Each record block supports fields documented below.

ResourceGroupName string

Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.

Tags 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

Fqdn string

The FQDN of the DNS CAA Record.

Name string

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

Records []CaaRecordRecordArgs

A list of values that make up the CAA record. Each record block supports fields documented below.

ResourceGroupName string

Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.

Tags 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

fqdn String

The FQDN of the DNS CAA Record.

name String

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

records List<CaaRecordRecordArgs>

A list of values that make up the CAA record. Each record block supports fields documented below.

resourceGroupName String

Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.

tags 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

fqdn string

The FQDN of the DNS CAA Record.

name string

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

records CaaRecordRecordArgs[]

A list of values that make up the CAA record. Each record block supports fields documented below.

resourceGroupName string

Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.

tags {[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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

fqdn str

The FQDN of the DNS CAA Record.

name str

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

records Sequence[CaaRecordRecordArgs]

A list of values that make up the CAA record. Each record block supports fields documented below.

resource_group_name str

Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.

tags 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

fqdn String

The FQDN of the DNS CAA Record.

name String

The name of the DNS CAA Record. If you are creating the record in the apex of the zone use "@" as the name. Changing this forces a new resource to be created.

records List<Property Map>

A list of values that make up the CAA record. Each record block supports fields documented below.

resourceGroupName String

Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.

tags 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 DNS Zone where the resource exists. Changing this forces a new resource to be created.

Supporting Types

CaaRecordRecord

Flags int

Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.

Tag string

A property tag, options are issue, issuewild and iodef.

Value string

A property value such as a registrar domain.

Flags int

Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.

Tag string

A property tag, options are issue, issuewild and iodef.

Value string

A property value such as a registrar domain.

flags Integer

Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.

tag String

A property tag, options are issue, issuewild and iodef.

value String

A property value such as a registrar domain.

flags number

Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.

tag string

A property tag, options are issue, issuewild and iodef.

value string

A property value such as a registrar domain.

flags int

Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.

tag str

A property tag, options are issue, issuewild and iodef.

value str

A property value such as a registrar domain.

flags Number

Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.

tag String

A property tag, options are issue, issuewild and iodef.

value String

A property value such as a registrar domain.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.