Skip to content

Commit 2956fca

Browse files
committed
fix(ci): Update cloudposse/dynamic-subnets/aws to the most recent version
AWS provider v6 deprecated `vpc = true` for the EIP resource
1 parent 4ae9351 commit 2956fca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module "vpc" {
1818

1919
module "subnets" {
2020
source = "cloudposse/dynamic-subnets/aws"
21-
version = "2.3.0"
21+
version = "2.4.2"
2222
availability_zones = var.availability_zones
2323
vpc_id = module.vpc.vpc_id
2424
igw_id = [module.vpc.igw_id]

examples/with_cognito_authentication/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020

2121
module "subnets" {
2222
source = "cloudposse/dynamic-subnets/aws"
23-
version = "2.3.0"
23+
version = "2.4.2"
2424
availability_zones = local.availability_zones
2525
vpc_id = module.vpc.vpc_id
2626
igw_id = [module.vpc.igw_id]

examples/with_google_oidc_authentication/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020

2121
module "subnets" {
2222
source = "cloudposse/dynamic-subnets/aws"
23-
version = "2.3.0"
23+
version = "2.4.2"
2424
availability_zones = local.availability_zones
2525
vpc_id = module.vpc.vpc_id
2626
igw_id = [module.vpc.igw_id]

examples/without_authentication/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020

2121
module "subnets" {
2222
source = "cloudposse/dynamic-subnets/aws"
23-
version = "2.3.0"
23+
version = "2.4.2"
2424
availability_zones = local.availability_zones
2525
vpc_id = module.vpc.vpc_id
2626
igw_id = [module.vpc.igw_id]

0 commit comments

Comments
 (0)