fix: Restrict AWS provider max version due to v6 provider breaking changes (#3384)

* Add aws version constraint for 6.0.0

* fix: Restrict all AWS providers and Helm providers upper version limit

---------

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
Michael Strassberger
2025-06-18 22:08:51 +02:00
committed by GitHub
parent a9c659ad10
commit 681a868d62
31 changed files with 52 additions and 52 deletions

View File

@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.95"
version = ">= 5.95, < 6.0.0"
}
}
}