File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,20 @@ provider "aws" {
33}
44
55module "vpc" {
6- source = " cloudposse/vpc/aws"
7- version = " 0.18 .1"
8- cidr_block = var. vpc_cidr_block
6+ source = " cloudposse/vpc/aws"
7+ version = " 2.1 .1"
8+ ipv4_primary_cidr_block = var. vpc_cidr_block
99
1010 context = module. this . context
1111}
1212
1313module "subnets" {
1414 source = " cloudposse/dynamic-subnets/aws"
15- version = " 0.39.3 "
15+ version = " 2.4.1 "
1616 availability_zones = var. availability_zones
1717 vpc_id = module. vpc . vpc_id
1818 igw_id = module. vpc . igw_id
19- cidr_block = module. vpc . vpc_cidr_block
19+ ipv4_cidr_block = module. vpc . vpc_cidr_block
2020 nat_gateway_enabled = true
2121 nat_instance_enabled = false
2222
@@ -44,7 +44,7 @@ module "container_definition" {
4444
4545module "ecs_alb_service_task" {
4646 source = " cloudposse/ecs-alb-service-task/aws"
47- version = " 0.42.3 "
47+ version = " 0.74.0 "
4848 alb_security_group = module. vpc . vpc_default_security_group_id
4949 container_definition_json = module. container_definition . json_map_encoded_list
5050 ecs_cluster_arn = aws_ecs_cluster. default . arn
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ data "aws_region" "default" {
213213module "codebuild" {
214214 enabled = module. this . enabled
215215 source = " cloudposse/codebuild/aws"
216- version = " 1 .0.0 "
216+ version = " 2 .0.2 "
217217 build_image = var. build_image
218218 build_compute_type = var. build_compute_type
219219 build_timeout = var. build_timeout
You can’t perform that action at this time.
0 commit comments