diff --git a/README.md b/README.md index 4361a7b..c824aae 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-sqs-module?ref=x.y.z +github.com/pbs/terraform-aws-sqs-module?ref=0.0.12 ``` ### Alternative Installation Methods @@ -22,7 +22,7 @@ Integrate this module like so: ```hcl module "queue" { - source = "github.com/pbs/terraform-aws-sqs-module?ref=x.y.z" + source = "github.com/pbs/terraform-aws-sqs-module?ref=0.0.12" organization = var.organization environment = var.environment @@ -35,7 +35,7 @@ If you need to integrate a secondary queue as a dead letter queue, this would be ```hcl module "queue" { - source = "github.com/pbs/terraform-aws-sqs-module?ref=x.y.z" + source = "github.com/pbs/terraform-aws-sqs-module?ref=0.0.12" name = "my-queue" @@ -51,7 +51,7 @@ module "queue" { } module "dlq" { - source = "github.com/pbs/terraform-aws-sqs-module?ref=x.y.z" + source = "github.com/pbs/terraform-aws-sqs-module?ref=0.0.12" name = "my-queue-dlq" @@ -66,7 +66,7 @@ module "dlq" { If this repo is added as a subtree, then the version of the module should be close to the version shown here: -`x.y.z` +`0.0.12` Note, however that subtrees can be altered as desired within repositories.