From 12f9001ab3d9dcb4573a4c9adbdada32e2530caf Mon Sep 17 00:00:00 2001 From: Garland Kan Date: Wed, 1 Dec 2021 10:17:10 -0800 Subject: [PATCH] Updating readme with aws provider region settings --- terraform-modules/aws/route53/hosted-zone/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/terraform-modules/aws/route53/hosted-zone/README.md b/terraform-modules/aws/route53/hosted-zone/README.md index f680b43cd..340488175 100644 --- a/terraform-modules/aws/route53/hosted-zone/README.md +++ b/terraform-modules/aws/route53/hosted-zone/README.md @@ -1,3 +1,16 @@ # Route53 Hosted Zone with DNSSEC You can verify the DNSSEC here after applying: https://dnssec-analyzer.verisignlabs.com + +## Provider +This module does not contain a provider and leaves it up to the instantiator to add this section into their Terraform. The reason is to keep this module reusable because you might have different provider settings than what this module would set and you can not have more than one of these in a Terraform run. + +You should add a section like this to your terraform instantiation: +``` +# Configure the AWS Provider +provider "aws" { + region = "us-east-1" +} +``` + +Setting the region to `us-east-1` is the eaiest thing to do beause it seems that AWS sets the route53 hosted region to this region and the signing keys for DNSSEC has to be in the same region.