From 71eec10d1adaf3295f9725cfb9ab770c527f9344 Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Thu, 25 Sep 2025 16:09:38 -0600 Subject: [PATCH 1/6] wip: test turninging off tags --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index c8dad9c..c94b820 100644 --- a/main.tf +++ b/main.tf @@ -105,7 +105,7 @@ resource "aws_security_group" "default" { vpc_id = local.vpc_id name = module.this.id description = "Allow ALL egress from SSM Agent." - tags = module.this.tags + # tags = module.this.tags } # trivy:ignore:aws-vpc-no-public-egress-sgr SSM Agent requires broad egress to communicate with AWS services From 8cb2c669e0b59b01c2623fb2724a52f25deecedc Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Thu, 25 Sep 2025 16:26:31 -0600 Subject: [PATCH 2/6] undo --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index c94b820..c8dad9c 100644 --- a/main.tf +++ b/main.tf @@ -105,7 +105,7 @@ resource "aws_security_group" "default" { vpc_id = local.vpc_id name = module.this.id description = "Allow ALL egress from SSM Agent." - # tags = module.this.tags + tags = module.this.tags } # trivy:ignore:aws-vpc-no-public-egress-sgr SSM Agent requires broad egress to communicate with AWS services From 58349060bfaf1e0a40d671074bec2a00fb614036 Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Thu, 25 Sep 2025 22:28:20 -0600 Subject: [PATCH 3/6] reverse --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index c8dad9c..c94b820 100644 --- a/main.tf +++ b/main.tf @@ -105,7 +105,7 @@ resource "aws_security_group" "default" { vpc_id = local.vpc_id name = module.this.id description = "Allow ALL egress from SSM Agent." - tags = module.this.tags + # tags = module.this.tags } # trivy:ignore:aws-vpc-no-public-egress-sgr SSM Agent requires broad egress to communicate with AWS services From c2dde08b3245996cb925b72a3e812042a5c28173 Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Thu, 25 Sep 2025 22:30:20 -0600 Subject: [PATCH 4/6] docs: update version number in readme --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b5eeeba..fa8804b 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,12 @@ Big shout out to the following projects which this project uses/depends on/menti ```hcl module "ssm_agent" { - source = "masterpointio/ssm-agent/aws" - version = "0.15.1" - stage = var.stage - namespace = var.namespace + source = "masterpointio/ssm-agent/aws" + version = "1.8.0" + + namespace = var.namespace + stage = var.stage + vpc_id = module.vpc.vpc_id subnet_ids = module.subnets.private_subnet_ids } @@ -50,8 +52,9 @@ module "vpc" { } module "subnets" { - source = "cloudposse/dynamic-subnets/aws" - version = "2.3.0" + source = "cloudposse/dynamic-subnets/aws" + version = "2.3.0" + namespace = var.namespace stage = var.stage From c0a83cac22f598c3d6f532b2a0ee0f27e3074d71 Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Thu, 25 Sep 2025 22:32:00 -0600 Subject: [PATCH 5/6] fix: bring this back --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index c94b820..c8dad9c 100644 --- a/main.tf +++ b/main.tf @@ -105,7 +105,7 @@ resource "aws_security_group" "default" { vpc_id = local.vpc_id name = module.this.id description = "Allow ALL egress from SSM Agent." - # tags = module.this.tags + tags = module.this.tags } # trivy:ignore:aws-vpc-no-public-egress-sgr SSM Agent requires broad egress to communicate with AWS services From 342adac4aee604e9f41bc018d3e1cb850979741a Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Fri, 26 Sep 2025 11:46:30 -0600 Subject: [PATCH 6/6] fix: encourage user to find latest version --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fa8804b..7bd5bf6 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Big shout out to the following projects which this project uses/depends on/menti ```hcl module "ssm_agent" { source = "masterpointio/ssm-agent/aws" - version = "1.8.0" + version = "X.X.X" namespace = var.namespace stage = var.stage @@ -41,7 +41,7 @@ module "ssm_agent" { module "vpc" { source = "cloudposse/vpc/aws" - version = "2.1.0" + version = "X.X.X" namespace = var.namespace stage = var.stage @@ -53,7 +53,7 @@ module "vpc" { module "subnets" { source = "cloudposse/dynamic-subnets/aws" - version = "2.3.0" + version = "X.X.X" namespace = var.namespace stage = var.stage