We recommend using Azure Native.
azure.dns.CaaRecord
Explore with Pulumi AI
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.dns.Zone("example", {
name: "mydomain.com",
resourceGroupName: example.name,
});
const exampleCaaRecord = new azure.dns.CaaRecord("example", {
name: "test",
zoneName: exampleZone.name,
resourceGroupName: example.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",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_zone = azure.dns.Zone("example",
name="mydomain.com",
resource_group_name=example.name)
example_caa_record = azure.dns.CaaRecord("example",
name="test",
zone_name=example_zone.name,
resource_group_name=example.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",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"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 := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleZone, err := dns.NewZone(ctx, "example", &dns.ZoneArgs{
Name: pulumi.String("mydomain.com"),
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
_, err = dns.NewCaaRecord(ctx, "example", &dns.CaaRecordArgs{
Name: pulumi.String("test"),
ZoneName: exampleZone.Name,
ResourceGroupName: example.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
})
}
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.Dns.Zone("example", new()
{
Name = "mydomain.com",
ResourceGroupName = example.Name,
});
var exampleCaaRecord = new Azure.Dns.CaaRecord("example", new()
{
Name = "test",
ZoneName = exampleZone.Name,
ResourceGroupName = example.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 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleZone = new Zone("exampleZone", ZoneArgs.builder()
.name("mydomain.com")
.resourceGroupName(example.name())
.build());
var exampleCaaRecord = new CaaRecord("exampleCaaRecord", CaaRecordArgs.builder()
.name("test")
.zoneName(exampleZone.name())
.resourceGroupName(example.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());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleZone:
type: azure:dns:Zone
name: example
properties:
name: mydomain.com
resourceGroupName: ${example.name}
exampleCaaRecord:
type: azure:dns:CaaRecord
name: example
properties:
name: test
zoneName: ${exampleZone.name}
resourceGroupName: ${example.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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CaaRecord(name: string, args: CaaRecordArgs, opts?: CustomResourceOptions);
@overload
def CaaRecord(resource_name: str,
args: CaaRecordArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CaaRecord(resource_name: str,
opts: Optional[ResourceOptions] = None,
records: Optional[Sequence[CaaRecordRecordArgs]] = 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 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.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. CaaRecordArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. CaaRecordArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. CaaRecordArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. CaaRecordArgs - 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 caaRecordResource = new Azure.Dns.CaaRecord("caaRecordResource", new()
{
Records = new[]
{
new Azure.Dns.Inputs.CaaRecordRecordArgs
{
Flags = 0,
Tag = "string",
Value = "string",
},
},
ResourceGroupName = "string",
Ttl = 0,
ZoneName = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := dns.NewCaaRecord(ctx, "caaRecordResource", &dns.CaaRecordArgs{
Records: dns.CaaRecordRecordArray{
&dns.CaaRecordRecordArgs{
Flags: pulumi.Int(0),
Tag: pulumi.String("string"),
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 caaRecordResource = new CaaRecord("caaRecordResource", CaaRecordArgs.builder()
.records(CaaRecordRecordArgs.builder()
.flags(0)
.tag("string")
.value("string")
.build())
.resourceGroupName("string")
.ttl(0)
.zoneName("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
caa_record_resource = azure.dns.CaaRecord("caaRecordResource",
records=[{
"flags": 0,
"tag": "string",
"value": "string",
}],
resource_group_name="string",
ttl=0,
zone_name="string",
name="string",
tags={
"string": "string",
})
const caaRecordResource = new azure.dns.CaaRecord("caaRecordResource", {
records: [{
flags: 0,
tag: "string",
value: "string",
}],
resourceGroupName: "string",
ttl: 0,
zoneName: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:dns:CaaRecord
properties:
name: string
records:
- flags: 0
tag: string
value: string
resourceGroupName: string
tags:
string: string
ttl: 0
zoneName: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CaaRecord resource accepts the following input properties:
- Records
This property is required. List<CaaRecord Record> - A list of values that make up the CAA record. Each
record
block supports fields documented below. - Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Ttl
This property is required. int - The Time To Live (TTL) of the DNS record in seconds.
- Zone
Name This property is required. Changes to this property will trigger replacement.
- Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- Name
Changes to this property will trigger replacement.
- 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. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Records
This property is required. []CaaRecord Record Args - A list of values that make up the CAA record. Each
record
block supports fields documented below. - Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Ttl
This property is required. int - The Time To Live (TTL) of the DNS record in seconds.
- Zone
Name This property is required. Changes to this property will trigger replacement.
- Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- Name
Changes to this property will trigger replacement.
- 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. - map[string]string
- A mapping of tags to assign to the resource.
- records
This property is required. List<CaaRecord Record> - A list of values that make up the CAA record. Each
record
block supports fields documented below. - resource
Group Name This property is required. Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl
This property is required. Integer - The Time To Live (TTL) of the DNS record in seconds.
- zone
Name This property is required. Changes to this property will trigger replacement.
- Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name
Changes to this property will trigger replacement.
- 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. - Map<String,String>
- A mapping of tags to assign to the resource.
- records
This property is required. CaaRecord Record[] - A list of values that make up the CAA record. Each
record
block supports fields documented below. - resource
Group Name This property is required. Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl
This property is required. number - The Time To Live (TTL) of the DNS record in seconds.
- zone
Name This property is required. Changes to this property will trigger replacement.
- Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name
Changes to this property will trigger replacement.
- 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. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- records
This property is required. Sequence[CaaRecord Record Args] - A list of values that make up the CAA record. Each
record
block supports fields documented below. - resource_
group_ name This property is required. Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl
This property is required. int - The Time To Live (TTL) of the DNS record in seconds.
- zone_
name This property is required. Changes to this property will trigger replacement.
- Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name
Changes to this property will trigger replacement.
- 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. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- records
This property is required. List<Property Map> - A list of values that make up the CAA record. Each
record
block supports fields documented below. - resource
Group Name This property is required. Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl
This property is required. Number - The Time To Live (TTL) of the DNS record in seconds.
- zone
Name This property is required. Changes to this property will trigger replacement.
- Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name
Changes to this property will trigger replacement.
- 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. - 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:
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)
resources: _: type: azure:dns:CaaRecord get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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 CAA Record.
- Name
Changes to this property will trigger replacement.
- 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<Caa
Record Record> - A list of values that make up the CAA record. Each
record
block supports fields documented below. - Resource
Group Name Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent 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.
- Zone
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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
[]Caa
Record Record Args - A list of values that make up the CAA record. Each
record
block supports fields documented below. - Resource
Group Name Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent 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.
- Zone
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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<Caa
Record Record> - A list of values that make up the CAA record. Each
record
block supports fields documented below. - resource
Group Name Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent 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.
- zone
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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
Caa
Record Record[] - A list of values that make up the CAA record. Each
record
block supports fields documented below. - resource
Group Name Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent 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.
- zone
Name Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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[Caa
Record Record Args] - A list of values that make up the CAA record. Each
record
block supports fields documented below. - resource_
group_ name Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent 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 Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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. - resource
Group Name Changes to this property will trigger replacement.
- Specifies the resource group where the DNS Zone (parent 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.
- zone
Name Changes to this property will trigger replacement.
- Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
Supporting Types
CaaRecordRecord, CaaRecordRecordArgs
- flags
This property is required. Integer - Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.
- tag
This property is required. String - A property tag, options are
issue
,issuewild
andiodef
. - value
This property is required. String - A property value such as a registrar domain.
- flags
This property is required. number - Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.
- tag
This property is required. string - A property tag, options are
issue
,issuewild
andiodef
. - value
This property is required. string - A property value such as a registrar domain.
- flags
This property is required. Number - Extensible CAA flags, currently only 1 is implemented to set the issuer critical flag.
- tag
This property is required. String - A property tag, options are
issue
,issuewild
andiodef
. - value
This property is required. String - A property value such as a registrar domain.
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
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
azurerm
Terraform Provider.