Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,19 @@ 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 = "X.X.X"

namespace = var.namespace
stage = var.stage

vpc_id = module.vpc.vpc_id
subnet_ids = module.subnets.private_subnet_ids
}

module "vpc" {
source = "cloudposse/vpc/aws"
version = "2.1.0"
version = "X.X.X"

namespace = var.namespace
stage = var.stage
Expand All @@ -50,8 +52,9 @@ module "vpc" {
}

module "subnets" {
source = "cloudposse/dynamic-subnets/aws"
version = "2.3.0"
source = "cloudposse/dynamic-subnets/aws"
version = "X.X.X"

namespace = var.namespace
stage = var.stage

Expand Down