azure logo
Azure Classic v5.43.0, May 6 23

azure.privatedns.AAAARecord

Explore with Pulumi AI

Enables you to manage DNS AAAA Records within Azure Private DNS.

Example Usage

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()
    {
        Location = "West Europe",
    });

    var testZone = new Azure.PrivateDns.Zone("testZone", new()
    {
        ResourceGroupName = example.Name,
    });

    var testAAAARecord = new Azure.PrivateDns.AAAARecord("testAAAARecord", new()
    {
        ZoneName = testZone.Name,
        ResourceGroupName = example.Name,
        Ttl = 300,
        Records = new[]
        {
            "fd5d:70bc:930e:d008:0000:0000:0000:7334",
            "fd5d:70bc:930e:d008::7335",
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/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{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		testZone, err := privatedns.NewZone(ctx, "testZone", &privatedns.ZoneArgs{
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		_, err = privatedns.NewAAAARecord(ctx, "testAAAARecord", &privatedns.AAAARecordArgs{
			ZoneName:          testZone.Name,
			ResourceGroupName: example.Name,
			Ttl:               pulumi.Int(300),
			Records: pulumi.StringArray{
				pulumi.String("fd5d:70bc:930e:d008:0000:0000:0000:7334"),
				pulumi.String("fd5d:70bc:930e:d008::7335"),
			},
		})
		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.privatedns.Zone;
import com.pulumi.azure.privatedns.ZoneArgs;
import com.pulumi.azure.privatedns.AAAARecord;
import com.pulumi.azure.privatedns.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()        
            .location("West Europe")
            .build());

        var testZone = new Zone("testZone", ZoneArgs.builder()        
            .resourceGroupName(example.name())
            .build());

        var testAAAARecord = new AAAARecord("testAAAARecord", AAAARecordArgs.builder()        
            .zoneName(testZone.name())
            .resourceGroupName(example.name())
            .ttl(300)
            .records(            
                "fd5d:70bc:930e:d008:0000:0000:0000:7334",
                "fd5d:70bc:930e:d008::7335")
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example", location="West Europe")
test_zone = azure.privatedns.Zone("testZone", resource_group_name=example.name)
test_aaaa_record = azure.privatedns.AAAARecord("testAAAARecord",
    zone_name=test_zone.name,
    resource_group_name=example.name,
    ttl=300,
    records=[
        "fd5d:70bc:930e:d008:0000:0000:0000:7334",
        "fd5d:70bc:930e:d008::7335",
    ])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {location: "West Europe"});
const testZone = new azure.privatedns.Zone("testZone", {resourceGroupName: example.name});
const testAAAARecord = new azure.privatedns.AAAARecord("testAAAARecord", {
    zoneName: testZone.name,
    resourceGroupName: example.name,
    ttl: 300,
    records: [
        "fd5d:70bc:930e:d008:0000:0000:0000:7334",
        "fd5d:70bc:930e:d008::7335",
    ],
});
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  testZone:
    type: azure:privatedns:Zone
    properties:
      resourceGroupName: ${example.name}
  testAAAARecord:
    type: azure:privatedns:AAAARecord
    properties:
      zoneName: ${testZone.name}
      resourceGroupName: ${example.name}
      ttl: 300
      records:
        - fd5d:70bc:930e:d008:0000:0000:0000:7334
        - fd5d:70bc:930e:d008::7335

Create AAAARecord Resource

new AAAARecord(name: string, args: AAAARecordArgs, opts?: CustomResourceOptions);
@overload
def AAAARecord(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               name: Optional[str] = None,
               records: Optional[Sequence[str]] = None,
               resource_group_name: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None,
               ttl: Optional[int] = None,
               zone_name: Optional[str] = None)
@overload
def AAAARecord(resource_name: str,
               args: AAAARecordArgs,
               opts: Optional[ResourceOptions] = 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:privatedns:AAAARecord
properties: # The arguments to resource properties.
options: # 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.
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.

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:

Records List<string>

A list of IPv6 Addresses.

ResourceGroupName string

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 A Record. Changing this forces a new resource to be created.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

Records []string

A list of IPv6 Addresses.

ResourceGroupName string

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 A Record. Changing this forces a new resource to be created.

Tags map[string]string

A mapping of tags to assign to the resource.

records List<String>

A list of IPv6 Addresses.

resourceGroupName String

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 A Record. Changing this forces a new resource to be created.

tags Map<String,String>

A mapping of tags to assign to the resource.

records string[]

A list of IPv6 Addresses.

resourceGroupName string

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 A Record. Changing this forces a new resource to be created.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

records Sequence[str]

A list of IPv6 Addresses.

resource_group_name str

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 A Record. Changing this forces a new resource to be created.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

records List<String>

A list of IPv6 Addresses.

resourceGroupName String

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 A Record. 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 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,
        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 A Record. Changing this forces a new resource to be created.

Records List<string>

A list of IPv6 Addresses.

ResourceGroupName string

Specifies the resource group where the 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 Private 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 A Record. Changing this forces a new resource to be created.

Records []string

A list of IPv6 Addresses.

ResourceGroupName string

Specifies the resource group where the 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 Private 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 A Record. Changing this forces a new resource to be created.

records List<String>

A list of IPv6 Addresses.

resourceGroupName String

Specifies the resource group where the 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 Private 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 A Record. Changing this forces a new resource to be created.

records string[]

A list of IPv6 Addresses.

resourceGroupName string

Specifies the resource group where the 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 Private 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 A Record. Changing this forces a new resource to be created.

records Sequence[str]

A list of IPv6 Addresses.

resource_group_name str

Specifies the resource group where the 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 Private 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 A Record. Changing this forces a new resource to be created.

records List<String>

A list of IPv6 Addresses.

resourceGroupName String

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

Import

Private DNS AAAA Records can be imported using the resource id, e.g.

 $ pulumi import azure:privatedns/aAAARecord:AAAARecord test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1/AAAA/myrecord1

Package Details

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

This Pulumi package is based on the azurerm Terraform Provider.