Relax aws Terraform provider version constraints

* Allow upgrades to the aws v6.x Terraform Provider and future
releases
This commit is contained in:
Dalton Hubble
2025-07-06 13:33:58 -07:00
parent 97a88bb4dc
commit aa5dbe8444
5 changed files with 8 additions and 4 deletions

View File

@@ -11,6 +11,10 @@ Notable changes between versions.
* Update Cilium from v1.17.4 to [v1.17.5](https://github.com/cilium/cilium/releases/tag/v1.17.5)
* Update flannel from v0.26.7 to [v0.27.0](https://github.com/flannel-io/flannel/releases/tag/v0.27.0)
### AWS
* Relax `aws` provider version constraint to allow upgrades to v6.x ([#1617](https://github.com/poseidon/typhoon/pull/1617))
### Azure
* Add `enable_http_load_balancing` variable to reduce load balancer rules count

View File

@@ -3,7 +3,7 @@
terraform {
required_version = ">= 0.13.0, < 2.0.0"
required_providers {
aws = ">= 2.23, <= 6.0"
aws = ">= 2.23"
null = ">= 2.1"
ct = {
source = "poseidon/ct"

View File

@@ -3,7 +3,7 @@
terraform {
required_version = ">= 0.13.0, < 2.0.0"
required_providers {
aws = ">= 2.23, <= 6.0"
aws = ">= 2.23"
ct = {
source = "poseidon/ct"
version = "~> 0.13"

View File

@@ -3,7 +3,7 @@
terraform {
required_version = ">= 0.13.0, < 2.0.0"
required_providers {
aws = ">= 2.23, <= 6.0"
aws = ">= 2.23"
null = ">= 2.1"
ct = {
source = "poseidon/ct"

View File

@@ -3,7 +3,7 @@
terraform {
required_version = ">= 0.13.0, < 2.0.0"
required_providers {
aws = ">= 2.23, <= 6.0"
aws = ">= 2.23"
ct = {
source = "poseidon/ct"
version = "~> 0.13"