AAAARecord
Enables you to manage DNS AAAA Records within Azure Private DNS.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var testResourceGroup = new Azure.Core.ResourceGroup("testResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West US",
});
var testZone = new Azure.PrivateDns.Zone("testZone", new Azure.PrivateDns.ZoneArgs
{
ResourceGroupName = testResourceGroup.Name,
});
var testAAAARecord = new Azure.PrivateDns.AAAARecord("testAAAARecord", new Azure.PrivateDns.AAAARecordArgs
{
ZoneName = testZone.Name,
ResourceGroupName = testResourceGroup.Name,
Ttl = 300,
Records =
{
"fd5d:70bc:930e:d008:0000:0000:0000:7334",
"fd5d:70bc:930e:d008::7335",
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/privatedns"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
testResourceGroup, err := core.NewResourceGroup(ctx, "testResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West US"),
})
if err != nil {
return err
}
testZone, err := privatedns.NewZone(ctx, "testZone", &privatedns.ZoneArgs{
ResourceGroupName: testResourceGroup.Name,
})
if err != nil {
return err
}
_, err = privatedns.NewAAAARecord(ctx, "testAAAARecord", &privatedns.AAAARecordArgs{
ZoneName: testZone.Name,
ResourceGroupName: testResourceGroup.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
})
}import pulumi
import pulumi_azure as azure
test_resource_group = azure.core.ResourceGroup("testResourceGroup", location="West US")
test_zone = azure.privatedns.Zone("testZone", resource_group_name=test_resource_group.name)
test_aaaa_record = azure.privatedns.AAAARecord("testAAAARecord",
zone_name=test_zone.name,
resource_group_name=test_resource_group.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 testResourceGroup = new azure.core.ResourceGroup("testResourceGroup", {location: "West US"});
const testZone = new azure.privatedns.Zone("testZone", {resourceGroupName: testResourceGroup.name});
const testAAAARecord = new azure.privatedns.AAAARecord("testAAAARecord", {
zoneName: testZone.name,
resourceGroupName: testResourceGroup.name,
ttl: 300,
records: [
"fd5d:70bc:930e:d008:0000:0000:0000:7334",
"fd5d:70bc:930e:d008::7335",
],
});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, 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:
- Records List<string>
A list of IPv6 Addresses.
- Resource
Group stringName Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name 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.
- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Records []string
A list of IPv6 Addresses.
- Resource
Group stringName Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name 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.
- map[string]string
A mapping of tags to assign to the resource.
- records string[]
A list of IPv6 Addresses.
- resource
Group stringName Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl number
- zone
Name 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.
- {[key: string]: string}
A mapping of tags to assign to the resource.
- records List[str]
A list of IPv6 Addresses.
- resource_
group_ strname Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl float
- 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.
- Dict[str, str]
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:
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, 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 A Record.
- Records List<string>
A list of IPv6 Addresses.
- Resource
Group stringName Specifies the resource group where the 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
- Zone
Name 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.
- Records []string
A list of IPv6 Addresses.
- Resource
Group stringName Specifies the resource group where the 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
- Zone
Name 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.
- records string[]
A list of IPv6 Addresses.
- resource
Group stringName Specifies the resource group where the 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
- zone
Name 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.
- records List[str]
A list of IPv6 Addresses.
- resource_
group_ strname Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Dict[str, str]
A mapping of tags to assign to the resource.
- ttl float
- zone_
name str Specifies the Private 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.