diff --git a/README.md b/README.md index b141bc1..4cb6d42 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Use this URL for the source of the module. See the usage examples below for more details. ```hcl -github.com/pbs/terraform-aws-amplify-module?ref=0.0.17 +github.com/pbs/terraform-aws-amplify-module?ref=x.y.z ``` ### Alternative Installation Methods @@ -24,7 +24,7 @@ Integrate this module like so: ```hcl module "amplify" { - source = "github.com/pbs/terraform-aws-amplify-module?ref=0.0.17" + source = "github.com/pbs/terraform-aws-amplify-module?ref=x.y.z" # Tagging Parameters organization = var.organization @@ -42,7 +42,7 @@ The easiest way to use this module is to use the AWS console to create an Amplif If this repo is added as a subtree, then the version of the module should be close to the version shown here: -`0.0.17` +`x.y.z` Note, however that subtrees can be altered as desired within repositories. diff --git a/domains.tf b/domains.tf index 1d845a9..12d59e2 100644 --- a/domains.tf +++ b/domains.tf @@ -15,4 +15,10 @@ resource "aws_amplify_domain_association" "domain" { prefix = sub_domain.value.prefix } } + lifecycle { + ignore_changes = [ + sub_domain + ] + } + }