AWS Route 53 Resolver DNSSEC Config

This page shows how to write Terraform and CloudFormation for Route 53 Resolver DNSSEC Config and write them securely.

aws_route53_resolver_dnssec_config (Terraform)

The DNSSEC Config in Route 53 Resolver can be configured in Terraform with the resource name aws_route53_resolver_dnssec_config. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

route53_resolver_dnssec_config.tf#L4
resource "aws_route53_resolver_dnssec_config" "route53_resolver_dnssec_config" {
  count = var.enable_route53_resolver_dnssec_config ? 1 : 0

  resource_id = var.route53_resolver_dnssec_config_resource_id

  lifecycle {

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Provides a Route 53 Resolver DNSSEC config resource.

AWS::Route53Resolver::ResolverDNSSECConfig (CloudFormation)

The ResolverDNSSECConfig in Route53Resolver can be configured in CloudFormation with the resource name AWS::Route53Resolver::ResolverDNSSECConfig. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

template.json#L1599
    "AWS::Route53Resolver::ResolverDNSSECConfig": {
      "Type": "AWS::Route53Resolver::ResolverDNSSECConfig",
      "Properties": {}
    },
    "AWS::AppMesh::VirtualService": {
      "Type": "AWS::AppMesh::VirtualService",

Parameters

Explanation in CloudFormation Registry

The AWS::Route53Resolver::ResolverDNSSECConfig resource is a complex type that contains information about a configuration for DNSSEC validation.

Frequently asked questions

What is AWS Route 53 Resolver DNSSEC Config?

AWS Route 53 Resolver DNSSEC Config is a resource for Route 53 Resolver of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Route 53 Resolver DNSSEC Config?

For Terraform, the asrkata/SebastianUA-terraform source code example is useful. See the Terraform Example section for further details.

For CloudFormation, the mhlabs/aws-icons-directory source code example is useful. See the CloudFormation Example section for further details.