Resource: aws_route53_resolver_dnssec_config

Provides a Route 53 Resolver DNSSEC config resource.

Example Usage

resource "aws_vpc" "example" {
  cidr_block           = "10.0.0.0/16"
  enable_dns_support   = true
  enable_dns_hostnames = true
}

resource "aws_route53_resolver_dnssec_config" "example" {
  resource_id = aws_vpc.example.id
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Route 53 Resolver DNSSEC configs using the Route 53 Resolver DNSSEC config ID. For example:

import {
  to = aws_route53_resolver_dnssec_config.example
  id = "rdsc-be1866ecc1683e95"
}

Using terraform import, import Route 53 Resolver DNSSEC configs using the Route 53 Resolver DNSSEC config ID. For example:

% terraform import aws_route53_resolver_dnssec_config.example rdsc-be1866ecc1683e95