Skip to content

Commit 4671918

Browse files
authored
Bump version for AWS VPC module to make it compatible with new AWS provider versions (#128)
This fixes #127
1 parent 90f63be commit 4671918

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

modules/aws-databricks-base-infra/vpc.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ data "aws_availability_zones" "available" {}
22

33
module "vpc" {
44
source = "terraform-aws-modules/vpc/aws"
5-
version = "3.2.0"
5+
version = "5.7.0"
66

77
name = var.prefix
88
cidr = var.cidr_block
@@ -33,7 +33,7 @@ module "vpc" {
3333

3434
module "vpc_endpoints" {
3535
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
36-
version = "3.2.0"
36+
version = "5.7.0"
3737

3838
vpc_id = module.vpc.vpc_id
3939
security_group_ids = [module.vpc.default_security_group_id]

modules/aws-workspace-basic/vpc.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "vpc" {
22
source = "terraform-aws-modules/vpc/aws"
3-
version = "3.2.0"
3+
version = "5.7.0"
44

55
name = local.prefix
66
cidr = var.cidr_block
@@ -27,4 +27,4 @@ module "vpc" {
2727
description = "Allow all internal TCP and UDP"
2828
self = true
2929
}]
30-
}
30+
}

modules/aws-workspace-basic/vpc_endpoints.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "vpc_endpoints" {
22
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
3-
version = "3.2.0"
3+
version = "5.7.0"
44

55
vpc_id = module.vpc.vpc_id
66
security_group_ids = [module.vpc.default_security_group_id]
@@ -35,4 +35,4 @@ module "vpc_endpoints" {
3535
}
3636

3737
tags = var.tags
38-
}
38+
}

modules/aws-workspace-with-firewall/vpc_endpoints.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "vpc_endpoints" {
22
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
3-
version = "3.11.0"
3+
version = "5.7.0"
44

55
vpc_id = aws_vpc.db_vpc.id
66
security_group_ids = [aws_security_group.default_sg.id]
@@ -36,4 +36,4 @@ module "vpc_endpoints" {
3636
}
3737

3838
tags = var.tags
39-
}
39+
}

0 commit comments

Comments
 (0)