Skip to content

Commit f98600a

Browse files
docs: update version number in example on readme (#59)
## what ## why - Bring copy/paste example to do date with module versions published on TF registries. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Documentation** * Refreshed Terraform usage examples with improved formatting and alignment for readability. * Updated the ssm-agent example to reference the latest major version (1.8.0) and clarified field ordering. * Adjusted the dynamic-subnets example indentation and spacing without changing behavior. * Enhancements make copy-paste setup clearer and reduce confusion around versioning and configuration layout. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 65ee015 commit f98600a

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,19 @@ Big shout out to the following projects which this project uses/depends on/menti
2929

3030
```hcl
3131
module "ssm_agent" {
32-
source = "masterpointio/ssm-agent/aws"
33-
version = "0.15.1"
34-
stage = var.stage
35-
namespace = var.namespace
32+
source = "masterpointio/ssm-agent/aws"
33+
version = "X.X.X"
34+
35+
namespace = var.namespace
36+
stage = var.stage
37+
3638
vpc_id = module.vpc.vpc_id
3739
subnet_ids = module.subnets.private_subnet_ids
3840
}
3941
4042
module "vpc" {
4143
source = "cloudposse/vpc/aws"
42-
version = "2.1.0"
44+
version = "X.X.X"
4345
4446
namespace = var.namespace
4547
stage = var.stage
@@ -50,8 +52,9 @@ module "vpc" {
5052
}
5153
5254
module "subnets" {
53-
source = "cloudposse/dynamic-subnets/aws"
54-
version = "2.3.0"
55+
source = "cloudposse/dynamic-subnets/aws"
56+
version = "X.X.X"
57+
5558
namespace = var.namespace
5659
stage = var.stage
5760

0 commit comments

Comments
 (0)