-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating readme with aws provider region settings
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |