Skip to content

Commit

Permalink
update version change for aws provider
Browse files Browse the repository at this point in the history
  • Loading branch information
mpvgithub committed Sep 27, 2023
1 parent ae4cb3f commit 7596b3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED]

### Changed

- Updated the terraform provider version for AWS to 5.17.0 (ecs plugin)
- Disabled `enable_nat_gateway` on the vpc module, since it was throwing error from the respective module

## [0.31.0] - 2023-09-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion covalent_ecs_plugin/assets/infra/networking.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module "vpc" {
]
private_subnets = []

enable_nat_gateway = true
enable_nat_gateway = false
single_nat_gateway = false
enable_dns_hostnames = true
}
Expand Down
2 changes: 1 addition & 1 deletion covalent_ecs_plugin/assets/infra/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.23"
version = "5.17.0"
}
}
}

0 comments on commit 7596b3a

Please sign in to comment.