azure logo
Azure Classic v5.43.0, May 6 23

azure.dns.ARecord

Explore with Pulumi AI

Import

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

 $ pulumi import azure:dns/aRecord:ARecord example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1/A/myrecord1

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleZone = new Azure.Dns.Zone("exampleZone", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
    });

    var exampleARecord = new Azure.Dns.ARecord("exampleARecord", new()
    {
        ZoneName = exampleZone.Name,
        ResourceGroupName = exampleResourceGroup.Name,
        Ttl = 300,
        Records = new[]
        {
            "10.0.180.17",
        },
    });

});
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 {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleZone, err := dns.NewZone(ctx, "exampleZone", &dns.ZoneArgs{
			ResourceGroupName: exampleResourceGroup.Name,
		})
		if err != nil {
			return err
		}
		_, err = dns.NewARecord(ctx, "exampleARecord", &dns.ARecordArgs{
			ZoneName:          exampleZone.Name,
			ResourceGroupName: exampleResourceGroup.Name,
			Ttl:               pulumi.Int(300),
			Records: pulumi.StringArray{
				pulumi.String("10.0.180.17"),
			},
		})
		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.dns.Zone;
import com.pulumi.azure.dns.ZoneArgs;
import com.pulumi.azure.dns.ARecord;
import com.pulumi.azure.dns.ARecordArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleZone = new Zone("exampleZone", ZoneArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .build());

        var exampleARecord = new ARecord("exampleARecord", ARecordArgs.builder()        
            .zoneName(exampleZone.name())
            .resourceGroupName(exampleResourceGroup.name())
            .ttl(300)
            .records("10.0.180.17")
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_zone = azure.dns.Zone("exampleZone", resource_group_name=example_resource_group.name)
example_a_record = azure.dns.ARecord("exampleARecord",
    zone_name=example_zone.name,
    resource_group_name=example_resource_group.name,
    ttl=300,
    records=["10.0.180.17"])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleZone = new azure.dns.Zone("exampleZone", {resourceGroupName: exampleResourceGroup.name});
const exampleARecord = new azure.dns.ARecord("exampleARecord", {
    zoneName: exampleZone.name,
    resourceGroupName: exampleResourceGroup.name,
    ttl: 300,
    records: ["10.0.180.17"],
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleZone:
    type: azure:dns:Zone
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
  exampleARecord:
    type: azure:dns:ARecord
    properties:
      zoneName: ${exampleZone.name}
      resourceGroupName: ${exampleResourceGroup.name}
      ttl: 300
      records:
        - 10.0.180.17

Alias Record)

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleZone = new Azure.Dns.Zone("exampleZone", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
    });

    var examplePublicIp = new Azure.Network.PublicIp("examplePublicIp", new()
    {
        Location = exampleResourceGroup.Location,
        ResourceGroupName = exampleResourceGroup.Name,
        AllocationMethod = "Dynamic",
        IpVersion = "IPv4",
    });

    var exampleARecord = new Azure.Dns.ARecord("exampleARecord", new()
    {
        ZoneName = exampleZone.Name,
        ResourceGroupName = exampleResourceGroup.Name,
        Ttl = 300,
        TargetResourceId = examplePublicIp.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 {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		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("IPv4"),
		})
		if err != nil {
			return err
		}
		_, err = dns.NewARecord(ctx, "exampleARecord", &dns.ARecordArgs{
			ZoneName:          exampleZone.Name,
			ResourceGroupName: exampleResourceGroup.Name,
			Ttl:               pulumi.Int(300),
			TargetResourceId:  examplePublicIp.ID(),
		})
		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.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.ARecord;
import com.pulumi.azure.dns.ARecordArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleZone = new Zone("exampleZone", ZoneArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .build());

        var examplePublicIp = new PublicIp("examplePublicIp", PublicIpArgs.builder()        
            .location(exampleResourceGroup.location())
            .resourceGroupName(exampleResourceGroup.name())
            .allocationMethod("Dynamic")
            .ipVersion("IPv4")
            .build());

        var exampleARecord = new ARecord("exampleARecord", ARecordArgs.builder()        
            .zoneName(exampleZone.name())
            .resourceGroupName(exampleResourceGroup.name())
            .ttl(300)
            .targetResourceId(examplePublicIp.id())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
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="IPv4")
example_a_record = azure.dns.ARecord("exampleARecord",
    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 Europe"});
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: "IPv4",
});
const exampleARecord = new azure.dns.ARecord("exampleARecord", {
    zoneName: exampleZone.name,
    resourceGroupName: exampleResourceGroup.name,
    ttl: 300,
    targetResourceId: examplePublicIp.id,
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleZone:
    type: azure:dns:Zone
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
  examplePublicIp:
    type: azure:network:PublicIp
    properties:
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
      allocationMethod: Dynamic
      ipVersion: IPv4
  exampleARecord:
    type: azure:dns:ARecord
    properties:
      zoneName: ${exampleZone.name}
      resourceGroupName: ${exampleResourceGroup.name}
      ttl: 300
      targetResourceId: ${examplePublicIp.id}

Create ARecord Resource

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

name string
The unique name of the resource.
args ARecordArgs
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 ARecordArgs
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 ARecordArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ARecordArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ARecordArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

Records List<string>

List of IPv4 Addresses. Conflicts with target_resource_id.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

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

Records []string

List of IPv4 Addresses. Conflicts with target_resource_id.

Tags map[string]string

A mapping of tags to assign to the resource.

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

records List<String>

List of IPv4 Addresses. Conflicts with target_resource_id.

tags Map<String,String>

A mapping of tags to assign to the resource.

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

records string[]

List of IPv4 Addresses. Conflicts with target_resource_id.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

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

records Sequence[str]

List of IPv4 Addresses. Conflicts with target_resource_id.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

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

records List<String>

List of IPv4 Addresses. Conflicts with target_resource_id.

tags Map<String>

A mapping of tags to assign to the resource.

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 ARecord resource produces the following output properties:

Fqdn string

The FQDN of the DNS A Record.

Id string

The provider-assigned unique ID for this managed resource.

Fqdn string

The FQDN of the DNS A Record.

Id string

The provider-assigned unique ID for this managed resource.

fqdn String

The FQDN of the DNS A Record.

id String

The provider-assigned unique ID for this managed resource.

fqdn string

The FQDN of the DNS A Record.

id string

The provider-assigned unique ID for this managed resource.

fqdn str

The FQDN of the DNS A Record.

id str

The provider-assigned unique ID for this managed resource.

fqdn String

The FQDN of the DNS A Record.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing ARecord Resource

Get an existing ARecord 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?: ARecordState, opts?: CustomResourceOptions): ARecord
@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) -> ARecord
func GetARecord(ctx *Context, name string, id IDInput, state *ARecordState, opts ...ResourceOption) (*ARecord, error)
public static ARecord Get(string name, Input<string> id, ARecordState? state, CustomResourceOptions? opts = null)
public static ARecord get(String name, Output<String> id, ARecordState 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 A Record.

Name string

The name of the DNS A Record. Changing this forces a new resource to be created.

Records List<string>

List of IPv4 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.

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 A Record.

Name string

The name of the DNS A Record. Changing this forces a new resource to be created.

Records []string

List of IPv4 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.

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 A Record.

name String

The name of the DNS A Record. Changing this forces a new resource to be created.

records List<String>

List of IPv4 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.

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 A Record.

name string

The name of the DNS A Record. Changing this forces a new resource to be created.

records string[]

List of IPv4 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.

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 A Record.

name str

The name of the DNS A Record. Changing this forces a new resource to be created.

records Sequence[str]

List of IPv4 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.

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 A Record.

name String

The name of the DNS A Record. Changing this forces a new resource to be created.

records List<String>

List of IPv4 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.

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.

Package Details

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

This Pulumi package is based on the azurerm Terraform Provider.