1. Packages
  2. AWS
  3. API Docs
  4. route53
  5. HostedZoneDnsSec
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

aws.route53.HostedZoneDnsSec

Explore with Pulumi AI

Manages Route 53 Hosted Zone Domain Name System Security Extensions (DNSSEC). For more information about managing DNSSEC in Route 53, see the Route 53 Developer Guide.

!> WARNING: If you disable DNSSEC signing for your hosted zone before the DNS changes have propagated, your domain could become unavailable on the internet. When you remove the DS records, you must wait until the longest TTL for the DS records that you remove has expired before you complete the step to disable DNSSEC signing. Please refer to the Route 53 Developer Guide - Disable DNSSEC for a detailed breakdown on the steps required to disable DNSSEC safely for a hosted zone.

Note: Route53 hosted zones are global resources, and as such any aws.kms.Key that you use as part of a signing key needs to be located in the us-east-1 region. In the example below, the main AWS provider declaration is for us-east-1, however if you are provisioning your AWS resources in a different region, you will need to specify a provider alias and use that attached to the aws.kms.Key resource as described in the provider alias documentation.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const current = aws.getCallerIdentity({});
const example = new aws.kms.Key("example", {
    customerMasterKeySpec: "ECC_NIST_P256",
    deletionWindowInDays: 7,
    keyUsage: "SIGN_VERIFY",
    policy: JSON.stringify({
        Statement: [
            {
                Action: [
                    "kms:DescribeKey",
                    "kms:GetPublicKey",
                    "kms:Sign",
                    "kms:Verify",
                ],
                Effect: "Allow",
                Principal: {
                    Service: "dnssec-route53.amazonaws.com",
                },
                Resource: "*",
                Sid: "Allow Route 53 DNSSEC Service",
            },
            {
                Action: "kms:*",
                Effect: "Allow",
                Principal: {
                    AWS: current.then(current => `arn:aws:iam::${current.accountId}:root`),
                },
                Resource: "*",
                Sid: "Enable IAM User Permissions",
            },
        ],
        Version: "2012-10-17",
    }),
});
const exampleZone = new aws.route53.Zone("example", {name: "example.com"});
const exampleKeySigningKey = new aws.route53.KeySigningKey("example", {
    hostedZoneId: exampleZone.id,
    keyManagementServiceArn: example.arn,
    name: "example",
});
const exampleHostedZoneDnsSec = new aws.route53.HostedZoneDnsSec("example", {hostedZoneId: exampleKeySigningKey.hostedZoneId}, {
    dependsOn: [exampleKeySigningKey],
});
Copy
import pulumi
import json
import pulumi_aws as aws

current = aws.get_caller_identity()
example = aws.kms.Key("example",
    customer_master_key_spec="ECC_NIST_P256",
    deletion_window_in_days=7,
    key_usage="SIGN_VERIFY",
    policy=json.dumps({
        "Statement": [
            {
                "Action": [
                    "kms:DescribeKey",
                    "kms:GetPublicKey",
                    "kms:Sign",
                    "kms:Verify",
                ],
                "Effect": "Allow",
                "Principal": {
                    "Service": "dnssec-route53.amazonaws.com",
                },
                "Resource": "*",
                "Sid": "Allow Route 53 DNSSEC Service",
            },
            {
                "Action": "kms:*",
                "Effect": "Allow",
                "Principal": {
                    "AWS": f"arn:aws:iam::{current.account_id}:root",
                },
                "Resource": "*",
                "Sid": "Enable IAM User Permissions",
            },
        ],
        "Version": "2012-10-17",
    }))
example_zone = aws.route53.Zone("example", name="example.com")
example_key_signing_key = aws.route53.KeySigningKey("example",
    hosted_zone_id=example_zone.id,
    key_management_service_arn=example.arn,
    name="example")
example_hosted_zone_dns_sec = aws.route53.HostedZoneDnsSec("example", hosted_zone_id=example_key_signing_key.hosted_zone_id,
opts = pulumi.ResourceOptions(depends_on=[example_key_signing_key]))
Copy
package main

import (
	"encoding/json"
	"fmt"

	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kms"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		current, err := aws.GetCallerIdentity(ctx, &aws.GetCallerIdentityArgs{}, nil)
		if err != nil {
			return err
		}
		tmpJSON0, err := json.Marshal(map[string]interface{}{
			"Statement": []interface{}{
				map[string]interface{}{
					"Action": []string{
						"kms:DescribeKey",
						"kms:GetPublicKey",
						"kms:Sign",
						"kms:Verify",
					},
					"Effect": "Allow",
					"Principal": map[string]interface{}{
						"Service": "dnssec-route53.amazonaws.com",
					},
					"Resource": "*",
					"Sid":      "Allow Route 53 DNSSEC Service",
				},
				map[string]interface{}{
					"Action": "kms:*",
					"Effect": "Allow",
					"Principal": map[string]interface{}{
						"AWS": fmt.Sprintf("arn:aws:iam::%v:root", current.AccountId),
					},
					"Resource": "*",
					"Sid":      "Enable IAM User Permissions",
				},
			},
			"Version": "2012-10-17",
		})
		if err != nil {
			return err
		}
		json0 := string(tmpJSON0)
		example, err := kms.NewKey(ctx, "example", &kms.KeyArgs{
			CustomerMasterKeySpec: pulumi.String("ECC_NIST_P256"),
			DeletionWindowInDays:  pulumi.Int(7),
			KeyUsage:              pulumi.String("SIGN_VERIFY"),
			Policy:                pulumi.String(json0),
		})
		if err != nil {
			return err
		}
		exampleZone, err := route53.NewZone(ctx, "example", &route53.ZoneArgs{
			Name: pulumi.String("example.com"),
		})
		if err != nil {
			return err
		}
		exampleKeySigningKey, err := route53.NewKeySigningKey(ctx, "example", &route53.KeySigningKeyArgs{
			HostedZoneId:            exampleZone.ID(),
			KeyManagementServiceArn: example.Arn,
			Name:                    pulumi.String("example"),
		})
		if err != nil {
			return err
		}
		_, err = route53.NewHostedZoneDnsSec(ctx, "example", &route53.HostedZoneDnsSecArgs{
			HostedZoneId: exampleKeySigningKey.HostedZoneId,
		}, pulumi.DependsOn([]pulumi.Resource{
			exampleKeySigningKey,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var current = Aws.GetCallerIdentity.Invoke();

    var example = new Aws.Kms.Key("example", new()
    {
        CustomerMasterKeySpec = "ECC_NIST_P256",
        DeletionWindowInDays = 7,
        KeyUsage = "SIGN_VERIFY",
        Policy = JsonSerializer.Serialize(new Dictionary<string, object?>
        {
            ["Statement"] = new[]
            {
                new Dictionary<string, object?>
                {
                    ["Action"] = new[]
                    {
                        "kms:DescribeKey",
                        "kms:GetPublicKey",
                        "kms:Sign",
                        "kms:Verify",
                    },
                    ["Effect"] = "Allow",
                    ["Principal"] = new Dictionary<string, object?>
                    {
                        ["Service"] = "dnssec-route53.amazonaws.com",
                    },
                    ["Resource"] = "*",
                    ["Sid"] = "Allow Route 53 DNSSEC Service",
                },
                new Dictionary<string, object?>
                {
                    ["Action"] = "kms:*",
                    ["Effect"] = "Allow",
                    ["Principal"] = new Dictionary<string, object?>
                    {
                        ["AWS"] = $"arn:aws:iam::{current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId)}:root",
                    },
                    ["Resource"] = "*",
                    ["Sid"] = "Enable IAM User Permissions",
                },
            },
            ["Version"] = "2012-10-17",
        }),
    });

    var exampleZone = new Aws.Route53.Zone("example", new()
    {
        Name = "example.com",
    });

    var exampleKeySigningKey = new Aws.Route53.KeySigningKey("example", new()
    {
        HostedZoneId = exampleZone.Id,
        KeyManagementServiceArn = example.Arn,
        Name = "example",
    });

    var exampleHostedZoneDnsSec = new Aws.Route53.HostedZoneDnsSec("example", new()
    {
        HostedZoneId = exampleKeySigningKey.HostedZoneId,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            exampleKeySigningKey,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.AwsFunctions;
import com.pulumi.aws.inputs.GetCallerIdentityArgs;
import com.pulumi.aws.kms.Key;
import com.pulumi.aws.kms.KeyArgs;
import com.pulumi.aws.route53.Zone;
import com.pulumi.aws.route53.ZoneArgs;
import com.pulumi.aws.route53.KeySigningKey;
import com.pulumi.aws.route53.KeySigningKeyArgs;
import com.pulumi.aws.route53.HostedZoneDnsSec;
import com.pulumi.aws.route53.HostedZoneDnsSecArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import com.pulumi.resources.CustomResourceOptions;
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) {
        final var current = AwsFunctions.getCallerIdentity();

        var example = new Key("example", KeyArgs.builder()
            .customerMasterKeySpec("ECC_NIST_P256")
            .deletionWindowInDays(7)
            .keyUsage("SIGN_VERIFY")
            .policy(serializeJson(
                jsonObject(
                    jsonProperty("Statement", jsonArray(
                        jsonObject(
                            jsonProperty("Action", jsonArray(
                                "kms:DescribeKey", 
                                "kms:GetPublicKey", 
                                "kms:Sign", 
                                "kms:Verify"
                            )),
                            jsonProperty("Effect", "Allow"),
                            jsonProperty("Principal", jsonObject(
                                jsonProperty("Service", "dnssec-route53.amazonaws.com")
                            )),
                            jsonProperty("Resource", "*"),
                            jsonProperty("Sid", "Allow Route 53 DNSSEC Service")
                        ), 
                        jsonObject(
                            jsonProperty("Action", "kms:*"),
                            jsonProperty("Effect", "Allow"),
                            jsonProperty("Principal", jsonObject(
                                jsonProperty("AWS", String.format("arn:aws:iam::%s:root", current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId())))
                            )),
                            jsonProperty("Resource", "*"),
                            jsonProperty("Sid", "Enable IAM User Permissions")
                        )
                    )),
                    jsonProperty("Version", "2012-10-17")
                )))
            .build());

        var exampleZone = new Zone("exampleZone", ZoneArgs.builder()
            .name("example.com")
            .build());

        var exampleKeySigningKey = new KeySigningKey("exampleKeySigningKey", KeySigningKeyArgs.builder()
            .hostedZoneId(exampleZone.id())
            .keyManagementServiceArn(example.arn())
            .name("example")
            .build());

        var exampleHostedZoneDnsSec = new HostedZoneDnsSec("exampleHostedZoneDnsSec", HostedZoneDnsSecArgs.builder()
            .hostedZoneId(exampleKeySigningKey.hostedZoneId())
            .build(), CustomResourceOptions.builder()
                .dependsOn(exampleKeySigningKey)
                .build());

    }
}
Copy
resources:
  example:
    type: aws:kms:Key
    properties:
      customerMasterKeySpec: ECC_NIST_P256
      deletionWindowInDays: 7
      keyUsage: SIGN_VERIFY
      policy:
        fn::toJSON:
          Statement:
            - Action:
                - kms:DescribeKey
                - kms:GetPublicKey
                - kms:Sign
                - kms:Verify
              Effect: Allow
              Principal:
                Service: dnssec-route53.amazonaws.com
              Resource: '*'
              Sid: Allow Route 53 DNSSEC Service
            - Action: kms:*
              Effect: Allow
              Principal:
                AWS: arn:aws:iam::${current.accountId}:root
              Resource: '*'
              Sid: Enable IAM User Permissions
          Version: 2012-10-17
  exampleZone:
    type: aws:route53:Zone
    name: example
    properties:
      name: example.com
  exampleKeySigningKey:
    type: aws:route53:KeySigningKey
    name: example
    properties:
      hostedZoneId: ${exampleZone.id}
      keyManagementServiceArn: ${example.arn}
      name: example
  exampleHostedZoneDnsSec:
    type: aws:route53:HostedZoneDnsSec
    name: example
    properties:
      hostedZoneId: ${exampleKeySigningKey.hostedZoneId}
    options:
      dependsOn:
        - ${exampleKeySigningKey}
variables:
  current:
    fn::invoke:
      function: aws:getCallerIdentity
      arguments: {}
Copy

Create HostedZoneDnsSec Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new HostedZoneDnsSec(name: string, args: HostedZoneDnsSecArgs, opts?: CustomResourceOptions);
@overload
def HostedZoneDnsSec(resource_name: str,
                     args: HostedZoneDnsSecArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def HostedZoneDnsSec(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     hosted_zone_id: Optional[str] = None,
                     signing_status: Optional[str] = None)
func NewHostedZoneDnsSec(ctx *Context, name string, args HostedZoneDnsSecArgs, opts ...ResourceOption) (*HostedZoneDnsSec, error)
public HostedZoneDnsSec(string name, HostedZoneDnsSecArgs args, CustomResourceOptions? opts = null)
public HostedZoneDnsSec(String name, HostedZoneDnsSecArgs args)
public HostedZoneDnsSec(String name, HostedZoneDnsSecArgs args, CustomResourceOptions options)
type: aws:route53:HostedZoneDnsSec
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. HostedZoneDnsSecArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. HostedZoneDnsSecArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. HostedZoneDnsSecArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. HostedZoneDnsSecArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. HostedZoneDnsSecArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var hostedZoneDnsSecResource = new Aws.Route53.HostedZoneDnsSec("hostedZoneDnsSecResource", new()
{
    HostedZoneId = "string",
    SigningStatus = "string",
});
Copy
example, err := route53.NewHostedZoneDnsSec(ctx, "hostedZoneDnsSecResource", &route53.HostedZoneDnsSecArgs{
	HostedZoneId:  pulumi.String("string"),
	SigningStatus: pulumi.String("string"),
})
Copy
var hostedZoneDnsSecResource = new HostedZoneDnsSec("hostedZoneDnsSecResource", HostedZoneDnsSecArgs.builder()
    .hostedZoneId("string")
    .signingStatus("string")
    .build());
Copy
hosted_zone_dns_sec_resource = aws.route53.HostedZoneDnsSec("hostedZoneDnsSecResource",
    hosted_zone_id="string",
    signing_status="string")
Copy
const hostedZoneDnsSecResource = new aws.route53.HostedZoneDnsSec("hostedZoneDnsSecResource", {
    hostedZoneId: "string",
    signingStatus: "string",
});
Copy
type: aws:route53:HostedZoneDnsSec
properties:
    hostedZoneId: string
    signingStatus: string
Copy

HostedZoneDnsSec Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The HostedZoneDnsSec resource accepts the following input properties:

HostedZoneId
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

SigningStatus string
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
HostedZoneId
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

SigningStatus string
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hostedZoneId
This property is required.
Changes to this property will trigger replacement.
String

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signingStatus String
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hostedZoneId
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signingStatus string
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hosted_zone_id
This property is required.
Changes to this property will trigger replacement.
str

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signing_status str
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hostedZoneId
This property is required.
Changes to this property will trigger replacement.
String

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signingStatus String
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.

Outputs

All input properties are implicitly available as output properties. Additionally, the HostedZoneDnsSec resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing HostedZoneDnsSec Resource

Get an existing HostedZoneDnsSec 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?: HostedZoneDnsSecState, opts?: CustomResourceOptions): HostedZoneDnsSec
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        hosted_zone_id: Optional[str] = None,
        signing_status: Optional[str] = None) -> HostedZoneDnsSec
func GetHostedZoneDnsSec(ctx *Context, name string, id IDInput, state *HostedZoneDnsSecState, opts ...ResourceOption) (*HostedZoneDnsSec, error)
public static HostedZoneDnsSec Get(string name, Input<string> id, HostedZoneDnsSecState? state, CustomResourceOptions? opts = null)
public static HostedZoneDnsSec get(String name, Output<String> id, HostedZoneDnsSecState state, CustomResourceOptions options)
resources:  _:    type: aws:route53:HostedZoneDnsSec    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
HostedZoneId Changes to this property will trigger replacement. string

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

SigningStatus string
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
HostedZoneId Changes to this property will trigger replacement. string

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

SigningStatus string
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hostedZoneId Changes to this property will trigger replacement. String

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signingStatus String
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hostedZoneId Changes to this property will trigger replacement. string

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signingStatus string
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hosted_zone_id Changes to this property will trigger replacement. str

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signing_status str
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.
hostedZoneId Changes to this property will trigger replacement. String

Identifier of the Route 53 Hosted Zone.

The following arguments are optional:

signingStatus String
Hosted Zone signing status. Valid values: SIGNING, NOT_SIGNING. Defaults to SIGNING.

Import

Using pulumi import, import aws_route53_hosted_zone_dnssec resources using the Route 53 Hosted Zone identifier. For example:

$ pulumi import aws:route53/hostedZoneDnsSec:HostedZoneDnsSec example Z1D633PJN98FT9
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.