Registered Domain
Provides a resource to manage a domain that has been registered and associated with the current AWS account. To register, renew and deregister a domain use the aws.route53domains.Domain resource instead. This is an advanced resource and has special caveats to be aware of when using it. Please read this document in its entirety before using this resource. The aws.route53domains.RegisteredDomain resource behaves differently from normal resources in that if a domain has been registered, the provider does not register this domain, but instead "adopts" it into management. A destroy does not delete the domain but does remove the resource from state.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.route53domains.RegisteredDomain("example", {
domainName: "example.com",
nameServers: [
{
name: "ns-195.awsdns-24.com",
},
{
name: "ns-874.awsdns-45.net",
},
],
tags: {
Environment: "test",
},
});import pulumi
import pulumi_aws as aws
example = aws.route53domains.RegisteredDomain("example",
domain_name="example.com",
name_servers=[
{
"name": "ns-195.awsdns-24.com",
},
{
"name": "ns-874.awsdns-45.net",
},
],
tags={
"Environment": "test",
})using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Route53Domains.RegisteredDomain("example", new()
{
DomainName = "example.com",
NameServers = new[]
{
new Aws.Route53Domains.Inputs.RegisteredDomainNameServerArgs
{
Name = "ns-195.awsdns-24.com",
},
new Aws.Route53Domains.Inputs.RegisteredDomainNameServerArgs
{
Name = "ns-874.awsdns-45.net",
},
},
Tags =
{
{ "Environment", "test" },
},
});
});package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53domains"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := route53domains.NewRegisteredDomain(ctx, "example", &route53domains.RegisteredDomainArgs{
DomainName: pulumi.String("example.com"),
NameServers: route53domains.RegisteredDomainNameServerArray{
&route53domains.RegisteredDomainNameServerArgs{
Name: pulumi.String("ns-195.awsdns-24.com"),
},
&route53domains.RegisteredDomainNameServerArgs{
Name: pulumi.String("ns-874.awsdns-45.net"),
},
},
Tags: pulumi.StringMap{
"Environment": pulumi.String("test"),
},
})
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.aws.route53domains.RegisteredDomain;
import com.pulumi.aws.route53domains.RegisteredDomainArgs;
import com.pulumi.aws.route53domains.inputs.RegisteredDomainNameServerArgs;
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 RegisteredDomain("example", RegisteredDomainArgs.builder()
.domainName("example.com")
.nameServers(
RegisteredDomainNameServerArgs.builder()
.name("ns-195.awsdns-24.com")
.build(),
RegisteredDomainNameServerArgs.builder()
.name("ns-874.awsdns-45.net")
.build())
.tags(Map.of("Environment", "test"))
.build());
}
}resources:
example:
type: aws:route53domains:RegisteredDomain
properties:
domainName: example.com
nameServers:
- name: ns-195.awsdns-24.com
- name: ns-874.awsdns-45.net
tags:
Environment: testImport
Using pulumi import, import domains using the domain name. For example:
$ pulumi import aws:route53domains/registeredDomain:RegisteredDomain example example.comProperties
Email address to contact to report incorrect contact information for a domain, to report that the domain is being used to send spam, to report that someone is cybersquatting on a domain name, or report some other type of abuse.
Phone number for reporting abuse.
Details about the domain administrative contact. See Contact Blocks for more details.
Whether domain administrative contact information is concealed from WHOIS queries. Default: true.
Details about the domain billing contact. See Contact Blocks for more details.
Whether domain billing contact information is concealed from WHOIS queries. Default: true.
The date when the domain was created as found in the response to a WHOIS query.
The name of the registered domain.
The date when the registration for the domain is set to expire.
The list of nameservers for the domain. See name_server Blocks for more details.
Details about the domain registrant. See Contact Blocks for more details.
Whether domain registrant contact information is concealed from WHOIS queries. Default: true.
Name of the registrar of the domain as identified in the registry.
Web address of the registrar.
List of domain name status codes.
Details about the domain technical contact. See Contact Blocks for more details.
Whether domain technical contact information is concealed from WHOIS queries. Default: true.
Whether the domain is locked for transfer. Default: true.
The last updated date of the domain as found in the response to a WHOIS query.
The fully qualified name of the WHOIS server that can answer the WHOIS query for the domain.