Skip to content

Commit

Permalink
Bump terraform-aws-modules/vpc/aws
Browse files Browse the repository at this point in the history
Bumps [terraform-aws-modules/vpc/aws](https://github.com/terraform-aws-modules/terraform-aws-vpc) from 5.13.0 to 5.16.0.
- [Release notes](https://github.com/terraform-aws-modules/terraform-aws-vpc/releases)
- [Changelog](https://github.com/terraform-aws-modules/terraform-aws-vpc/blob/master/CHANGELOG.md)
- [Commits](terraform-aws-modules/terraform-aws-vpc@v5.13.0...v5.16.0)

---
updated-dependencies:
- dependency-name: terraform-aws-modules/vpc/aws
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 3, 2024
1 parent 8d2f502 commit 3fe61f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "connected_vpc_endpoints" {
#checkov:skip=CKV_TF_1:Module registry does not support commit hashes for versions

source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
version = "5.13.0"
version = "5.16.0"

vpc_id = module.connected_vpc.vpc_id
subnet_ids = module.connected_vpc.private_subnets
Expand Down Expand Up @@ -59,7 +59,7 @@ module "isolated_vpc_endpoints" {
#checkov:skip=CKV_TF_1:Module registry does not support commit hashes for versions

source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
version = "5.13.0"
version = "5.16.0"

vpc_id = module.isolated_vpc.vpc_id
subnet_ids = module.isolated_vpc.private_subnets
Expand Down
4 changes: 2 additions & 2 deletions terraform/environments/analytical-platform-ingestion/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "connected_vpc" {
#checkov:skip=CKV_TF_1:Module registry does not support commit hashes for versions

source = "terraform-aws-modules/vpc/aws"
version = "5.13.0"
version = "5.16.0"

name = "${local.application_name}-${local.environment}-connected"
azs = slice(data.aws_availability_zones.available.names, 0, 3)
Expand All @@ -26,7 +26,7 @@ module "isolated_vpc" {
#checkov:skip=CKV_TF_1:Module registry does not support commit hashes for versions

source = "terraform-aws-modules/vpc/aws"
version = "5.13.0"
version = "5.16.0"

name = "${local.application_name}-${local.environment}-isolated"
azs = slice(data.aws_availability_zones.available.names, 0, 3)
Expand Down

0 comments on commit 3fe61f5

Please sign in to comment.