1. Packages
  2. Azure Classic
  3. API Docs
  4. dns
  5. AaaaRecord

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.dns.AaaaRecord

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    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 exampleAaaaRecord = new azure.dns.AaaaRecord("example", {
        name: "test",
        zoneName: exampleZone.name,
        resourceGroupName: example.name,
        ttl: 300,
        records: ["2001:db8::1:0:0:1"],
    });
    
    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_aaaa_record = azure.dns.AaaaRecord("example",
        name="test",
        zone_name=example_zone.name,
        resource_group_name=example.name,
        ttl=300,
        records=["2001:db8::1:0:0:1"])
    
    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 {
    		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.NewAaaaRecord(ctx, "example", &dns.AaaaRecordArgs{
    			Name:              pulumi.String("test"),
    			ZoneName:          exampleZone.Name,
    			ResourceGroupName: example.Name,
    			Ttl:               pulumi.Int(300),
    			Records: pulumi.StringArray{
    				pulumi.String("2001:db8::1:0:0:1"),
    			},
    		})
    		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 exampleAaaaRecord = new Azure.Dns.AaaaRecord("example", new()
        {
            Name = "test",
            ZoneName = exampleZone.Name,
            ResourceGroupName = example.Name,
            Ttl = 300,
            Records = new[]
            {
                "2001:db8::1:0:0:1",
            },
        });
    
    });
    
    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.AaaaRecord;
    import com.pulumi.azure.dns.AaaaRecordArgs;
    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 exampleAaaaRecord = new AaaaRecord("exampleAaaaRecord", AaaaRecordArgs.builder()        
                .name("test")
                .zoneName(exampleZone.name())
                .resourceGroupName(example.name())
                .ttl(300)
                .records("2001:db8::1:0:0:1")
                .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}
      exampleAaaaRecord:
        type: azure:dns:AaaaRecord
        name: example
        properties:
          name: test
          zoneName: ${exampleZone.name}
          resourceGroupName: ${example.name}
          ttl: 300
          records:
            - 2001:db8::1:0:0:1
    

    Alias Record)

    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 examplePublicIp = new azure.network.PublicIp("example", {
        name: "mypublicip",
        location: example.location,
        resourceGroupName: example.name,
        allocationMethod: "Dynamic",
        ipVersion: "IPv6",
    });
    const exampleAaaaRecord = new azure.dns.AaaaRecord("example", {
        name: "test",
        zoneName: exampleZone.name,
        resourceGroupName: example.name,
        ttl: 300,
        targetResourceId: examplePublicIp.id,
    });
    
    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_public_ip = azure.network.PublicIp("example",
        name="mypublicip",
        location=example.location,
        resource_group_name=example.name,
        allocation_method="Dynamic",
        ip_version="IPv6")
    example_aaaa_record = azure.dns.AaaaRecord("example",
        name="test",
        zone_name=example_zone.name,
        resource_group_name=example.name,
        ttl=300,
        target_resource_id=example_public_ip.id)
    
    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-azure/sdk/v5/go/azure/network"
    	"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
    		}
    		examplePublicIp, err := network.NewPublicIp(ctx, "example", &network.PublicIpArgs{
    			Name:              pulumi.String("mypublicip"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			AllocationMethod:  pulumi.String("Dynamic"),
    			IpVersion:         pulumi.String("IPv6"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = dns.NewAaaaRecord(ctx, "example", &dns.AaaaRecordArgs{
    			Name:              pulumi.String("test"),
    			ZoneName:          exampleZone.Name,
    			ResourceGroupName: example.Name,
    			Ttl:               pulumi.Int(300),
    			TargetResourceId:  examplePublicIp.ID(),
    		})
    		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 examplePublicIp = new Azure.Network.PublicIp("example", new()
        {
            Name = "mypublicip",
            Location = example.Location,
            ResourceGroupName = example.Name,
            AllocationMethod = "Dynamic",
            IpVersion = "IPv6",
        });
    
        var exampleAaaaRecord = new Azure.Dns.AaaaRecord("example", new()
        {
            Name = "test",
            ZoneName = exampleZone.Name,
            ResourceGroupName = example.Name,
            Ttl = 300,
            TargetResourceId = examplePublicIp.Id,
        });
    
    });
    
    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.network.PublicIp;
    import com.pulumi.azure.network.PublicIpArgs;
    import com.pulumi.azure.dns.AaaaRecord;
    import com.pulumi.azure.dns.AaaaRecordArgs;
    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 examplePublicIp = new PublicIp("examplePublicIp", PublicIpArgs.builder()        
                .name("mypublicip")
                .location(example.location())
                .resourceGroupName(example.name())
                .allocationMethod("Dynamic")
                .ipVersion("IPv6")
                .build());
    
            var exampleAaaaRecord = new AaaaRecord("exampleAaaaRecord", AaaaRecordArgs.builder()        
                .name("test")
                .zoneName(exampleZone.name())
                .resourceGroupName(example.name())
                .ttl(300)
                .targetResourceId(examplePublicIp.id())
                .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}
      examplePublicIp:
        type: azure:network:PublicIp
        name: example
        properties:
          name: mypublicip
          location: ${example.location}
          resourceGroupName: ${example.name}
          allocationMethod: Dynamic
          ipVersion: IPv6
      exampleAaaaRecord:
        type: azure:dns:AaaaRecord
        name: example
        properties:
          name: test
          zoneName: ${exampleZone.name}
          resourceGroupName: ${example.name}
          ttl: 300
          targetResourceId: ${examplePublicIp.id}
    

    Create AaaaRecord Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AaaaRecord(name: string, args: AaaaRecordArgs, opts?: CustomResourceOptions);
    @overload
    def AaaaRecord(resource_name: str,
                   args: AaaaRecordArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def AaaaRecord(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   ttl: Optional[int] = None,
                   zone_name: Optional[str] = None,
                   name: Optional[str] = None,
                   records: Optional[Sequence[str]] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   target_resource_id: Optional[str] = None)
    func NewAaaaRecord(ctx *Context, name string, args AaaaRecordArgs, opts ...ResourceOption) (*AaaaRecord, error)
    public AaaaRecord(string name, AaaaRecordArgs args, CustomResourceOptions? opts = null)
    public AaaaRecord(String name, AaaaRecordArgs args)
    public AaaaRecord(String name, AaaaRecordArgs args, CustomResourceOptions options)
    
    type: azure:dns:AaaaRecord
    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 AaaaRecordArgs
    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 AaaaRecordArgs
    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 AaaaRecordArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AaaaRecordArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AaaaRecordArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var aaaaRecordResource = new Azure.Dns.AaaaRecord("aaaaRecordResource", new()
    {
        ResourceGroupName = "string",
        Ttl = 0,
        ZoneName = "string",
        Name = "string",
        Records = new[]
        {
            "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
        TargetResourceId = "string",
    });
    
    example, err := dns.NewAaaaRecord(ctx, "aaaaRecordResource", &dns.AaaaRecordArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Ttl:               pulumi.Int(0),
    	ZoneName:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Records: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	TargetResourceId: pulumi.String("string"),
    })
    
    var aaaaRecordResource = new AaaaRecord("aaaaRecordResource", AaaaRecordArgs.builder()        
        .resourceGroupName("string")
        .ttl(0)
        .zoneName("string")
        .name("string")
        .records("string")
        .tags(Map.of("string", "string"))
        .targetResourceId("string")
        .build());
    
    aaaa_record_resource = azure.dns.AaaaRecord("aaaaRecordResource",
        resource_group_name="string",
        ttl=0,
        zone_name="string",
        name="string",
        records=["string"],
        tags={
            "string": "string",
        },
        target_resource_id="string")
    
    const aaaaRecordResource = new azure.dns.AaaaRecord("aaaaRecordResource", {
        resourceGroupName: "string",
        ttl: 0,
        zoneName: "string",
        name: "string",
        records: ["string"],
        tags: {
            string: "string",
        },
        targetResourceId: "string",
    });
    
    type: azure:dns:AaaaRecord
    properties:
        name: string
        records:
            - string
        resourceGroupName: string
        tags:
            string: string
        targetResourceId: string
        ttl: 0
        zoneName: string
    

    AaaaRecord 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 AaaaRecord resource accepts the following input properties:

    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 AAAA Record. Changing this forces a new resource to be created.
    Records List<string>
    List of IPv6 Addresses. Conflicts with target_resource_id.
    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    Note: either records OR target_resource_id must be specified, but not both.

    TargetResourceId string
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record. Changing this forces a new resource to be created.
    Records []string
    List of IPv6 Addresses. Conflicts with target_resource_id.
    Tags map[string]string

    A mapping of tags to assign to the resource.

    Note: either records OR target_resource_id must be specified, but not both.

    TargetResourceId string
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record. Changing this forces a new resource to be created.
    records List<String>
    List of IPv6 Addresses. Conflicts with target_resource_id.
    tags Map<String,String>

    A mapping of tags to assign to the resource.

    Note: either records OR target_resource_id must be specified, but not both.

    targetResourceId String
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record. Changing this forces a new resource to be created.
    records string[]
    List of IPv6 Addresses. Conflicts with target_resource_id.
    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    Note: either records OR target_resource_id must be specified, but not both.

    targetResourceId string
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record. Changing this forces a new resource to be created.
    records Sequence[str]
    List of IPv6 Addresses. Conflicts with target_resource_id.
    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    Note: either records OR target_resource_id must be specified, but not both.

    target_resource_id str
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record. Changing this forces a new resource to be created.
    records List<String>
    List of IPv6 Addresses. Conflicts with target_resource_id.
    tags Map<String>

    A mapping of tags to assign to the resource.

    Note: either records OR target_resource_id must be specified, but not both.

    targetResourceId String
    The Azure resource id of the target object. Conflicts with records.

    Outputs

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

    Fqdn string
    The FQDN of the DNS AAAA Record.
    Id string
    The provider-assigned unique ID for this managed resource.
    Fqdn string
    The FQDN of the DNS AAAA Record.
    Id string
    The provider-assigned unique ID for this managed resource.
    fqdn String
    The FQDN of the DNS AAAA Record.
    id String
    The provider-assigned unique ID for this managed resource.
    fqdn string
    The FQDN of the DNS AAAA Record.
    id string
    The provider-assigned unique ID for this managed resource.
    fqdn str
    The FQDN of the DNS AAAA Record.
    id str
    The provider-assigned unique ID for this managed resource.
    fqdn String
    The FQDN of the DNS AAAA Record.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AaaaRecord Resource

    Get an existing AaaaRecord 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?: AaaaRecordState, opts?: CustomResourceOptions): AaaaRecord
    @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,
            target_resource_id: Optional[str] = None,
            ttl: Optional[int] = None,
            zone_name: Optional[str] = None) -> AaaaRecord
    func GetAaaaRecord(ctx *Context, name string, id IDInput, state *AaaaRecordState, opts ...ResourceOption) (*AaaaRecord, error)
    public static AaaaRecord Get(string name, Input<string> id, AaaaRecordState? state, CustomResourceOptions? opts = null)
    public static AaaaRecord get(String name, Output<String> id, AaaaRecordState 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 AAAA Record.
    Name string
    The name of the DNS AAAA Record. Changing this forces a new resource to be created.
    Records List<string>
    List of IPv6 Addresses. Conflicts with target_resource_id.
    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.

    Note: either records OR target_resource_id must be specified, but not both.

    TargetResourceId string
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record.
    Name string
    The name of the DNS AAAA Record. Changing this forces a new resource to be created.
    Records []string
    List of IPv6 Addresses. Conflicts with target_resource_id.
    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.

    Note: either records OR target_resource_id must be specified, but not both.

    TargetResourceId string
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record.
    name String
    The name of the DNS AAAA Record. Changing this forces a new resource to be created.
    records List<String>
    List of IPv6 Addresses. Conflicts with target_resource_id.
    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.

    Note: either records OR target_resource_id must be specified, but not both.

    targetResourceId String
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record.
    name string
    The name of the DNS AAAA Record. Changing this forces a new resource to be created.
    records string[]
    List of IPv6 Addresses. Conflicts with target_resource_id.
    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.

    Note: either records OR target_resource_id must be specified, but not both.

    targetResourceId string
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record.
    name str
    The name of the DNS AAAA Record. Changing this forces a new resource to be created.
    records Sequence[str]
    List of IPv6 Addresses. Conflicts with target_resource_id.
    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.

    Note: either records OR target_resource_id must be specified, but not both.

    target_resource_id str
    The Azure resource id of the target object. Conflicts with records.
    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 AAAA Record.
    name String
    The name of the DNS AAAA Record. Changing this forces a new resource to be created.
    records List<String>
    List of IPv6 Addresses. Conflicts with target_resource_id.
    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.

    Note: either records OR target_resource_id must be specified, but not both.

    targetResourceId String
    The Azure resource id of the target object. Conflicts with records.
    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.

    Import

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

    $ pulumi import azure:dns/aaaaRecord:AaaaRecord example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1/AAAA/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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi