AaaaRecord
Enables you to manage DNS AAAA Records within Azure DNS.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West US",
});
var exampleZone = new Azure.Dns.Zone("exampleZone", new Azure.Dns.ZoneArgs
{
ResourceGroupName = exampleResourceGroup.Name,
});
var exampleAaaaRecord = new Azure.Dns.AaaaRecord("exampleAaaaRecord", new Azure.Dns.AaaaRecordArgs
{
ZoneName = exampleZone.Name,
ResourceGroupName = exampleResourceGroup.Name,
Ttl = 300,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/dns"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West US"),
})
if err != nil {
return err
}
exampleZone, err := dns.NewZone(ctx, "exampleZone", &dns.ZoneArgs{
ResourceGroupName: exampleResourceGroup.Name,
})
if err != nil {
return err
}
_, err = dns.NewAaaaRecord(ctx, "exampleAaaaRecord", &dns.AaaaRecordArgs{
ZoneName: exampleZone.Name,
ResourceGroupName: exampleResourceGroup.Name,
Ttl: pulumi.Int(300),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West US")
example_zone = azure.dns.Zone("exampleZone", resource_group_name=example_resource_group.name)
example_aaaa_record = azure.dns.AaaaRecord("exampleAaaaRecord",
zone_name=example_zone.name,
resource_group_name=example_resource_group.name,
ttl=300)import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West US"});
const exampleZone = new azure.dns.Zone("exampleZone", {resourceGroupName: exampleResourceGroup.name});
const exampleAaaaRecord = new azure.dns.AaaaRecord("exampleAaaaRecord", {
zoneName: exampleZone.name,
resourceGroupName: exampleResourceGroup.name,
ttl: 300,
});Alias Record)
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West US",
});
var exampleZone = new Azure.Dns.Zone("exampleZone", new Azure.Dns.ZoneArgs
{
ResourceGroupName = exampleResourceGroup.Name,
});
var examplePublicIp = new Azure.Network.PublicIp("examplePublicIp", new Azure.Network.PublicIpArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
AllocationMethod = "Dynamic",
IpVersion = "IPv6",
});
var exampleAaaaRecord = new Azure.Dns.AaaaRecord("exampleAaaaRecord", new Azure.Dns.AaaaRecordArgs
{
ZoneName = exampleZone.Name,
ResourceGroupName = exampleResourceGroup.Name,
Ttl = 300,
TargetResourceId = examplePublicIp.Id,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/dns"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/network"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West US"),
})
if err != nil {
return err
}
exampleZone, err := dns.NewZone(ctx, "exampleZone", &dns.ZoneArgs{
ResourceGroupName: exampleResourceGroup.Name,
})
if err != nil {
return err
}
examplePublicIp, err := network.NewPublicIp(ctx, "examplePublicIp", &network.PublicIpArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
AllocationMethod: pulumi.String("Dynamic"),
IpVersion: pulumi.String("IPv6"),
})
if err != nil {
return err
}
_, err = dns.NewAaaaRecord(ctx, "exampleAaaaRecord", &dns.AaaaRecordArgs{
ZoneName: exampleZone.Name,
ResourceGroupName: exampleResourceGroup.Name,
Ttl: pulumi.Int(300),
TargetResourceId: examplePublicIp.ID(),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West US")
example_zone = azure.dns.Zone("exampleZone", resource_group_name=example_resource_group.name)
example_public_ip = azure.network.PublicIp("examplePublicIp",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
allocation_method="Dynamic",
ip_version="IPv6")
example_aaaa_record = azure.dns.AaaaRecord("exampleAaaaRecord",
zone_name=example_zone.name,
resource_group_name=example_resource_group.name,
ttl=300,
target_resource_id=example_public_ip.id)import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West US"});
const exampleZone = new azure.dns.Zone("exampleZone", {resourceGroupName: exampleResourceGroup.name});
const examplePublicIp = new azure.network.PublicIp("examplePublicIp", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
allocationMethod: "Dynamic",
ipVersion: "IPv6",
});
const exampleAaaaRecord = new azure.dns.AaaaRecord("exampleAaaaRecord", {
zoneName: exampleZone.name,
resourceGroupName: exampleResourceGroup.name,
ttl: 300,
targetResourceId: examplePublicIp.id,
});Create a AaaaRecord Resource
new AaaaRecord(name: string, args: AaaaRecordArgs, opts?: CustomResourceOptions);def AaaaRecord(resource_name, opts=None, name=None, records=None, resource_group_name=None, tags=None, target_resource_id=None, ttl=None, zone_name=None, __props__=None);func NewAaaaRecord(ctx *Context, name string, args AaaaRecordArgs, opts ...ResourceOption) (*AaaaRecord, error)public AaaaRecord(string name, AaaaRecordArgs args, CustomResourceOptions? opts = null)- 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.
- opts ResourceOptions
- A bag of options that control this 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.
AaaaRecord Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The AaaaRecord resource accepts the following input properties:
- Resource
Group stringName Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name 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.
- Records List<string>
List of IPv4 Addresses. Conflicts with
target_resource_id.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Target
Resource stringId The Azure resource id of the target object. Conflicts with
records
- Resource
Group stringName Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name 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.
- Records []string
List of IPv4 Addresses. Conflicts with
target_resource_id.- map[string]string
A mapping of tags to assign to the resource.
- Target
Resource stringId The Azure resource id of the target object. Conflicts with
records
- resource
Group stringName Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl number
- zone
Name 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.
- records string[]
List of IPv4 Addresses. Conflicts with
target_resource_id.- {[key: string]: string}
A mapping of tags to assign to the resource.
- target
Resource stringId The Azure resource id of the target object. Conflicts with
records
- resource_
group_ strname Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl float
- 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.
- records List[str]
List of IPv4 Addresses. Conflicts with
target_resource_id.- Dict[str, str]
A mapping of tags to assign to the resource.
- target_
resource_ strid 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:
Look up an 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): AaaaRecordstatic get(resource_name, id, opts=None, fqdn=None, name=None, records=None, resource_group_name=None, tags=None, target_resource_id=None, ttl=None, zone_name=None, __props__=None);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)- 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.
The following state arguments are supported:
- Fqdn string
The FQDN of the DNS AAAA Record.
- Name string
The name of the DNS AAAA Record.
- Records List<string>
List of IPv4 Addresses. Conflicts with
target_resource_id.- Resource
Group stringName 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.
- Target
Resource stringId The Azure resource id of the target object. Conflicts with
records- Ttl int
- Zone
Name 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.
- Records []string
List of IPv4 Addresses. Conflicts with
target_resource_id.- Resource
Group stringName 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.
- Target
Resource stringId The Azure resource id of the target object. Conflicts with
records- Ttl int
- Zone
Name 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.
- records string[]
List of IPv4 Addresses. Conflicts with
target_resource_id.- resource
Group stringName 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.
- target
Resource stringId The Azure resource id of the target object. Conflicts with
records- ttl number
- zone
Name 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.
- records List[str]
List of IPv4 Addresses. Conflicts with
target_resource_id.- resource_
group_ strname Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Dict[str, str]
A mapping of tags to assign to the resource.
- target_
resource_ strid The Azure resource id of the target object. Conflicts with
records- ttl float
- zone_
name str Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.