mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-08-03 05:18:22 +00:00
v6.57.0 (released 29 July 2026) breaks ordinary reads across unrelated AWS services — SSM GetParameter returns SerializationException, IAM GetPolicy returns a 302, ECR returns InvalidSignatureException — with no config change. Reported upstream as hashicorp/terraform-provider-aws#49170, open with no root cause identified; 6.56.0 is confirmed good. Every stack declared `>= 5.0` with no upper bound and no lock files are committed, so each CI run silently resolved whatever HashiCorp had shipped most recently. That is how a provider released today broke a pipeline nobody had touched. Pinning exactly makes the deployed version a reviewed decision rather than a discovery. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
16 lines
No EOL
270 B
HCL
16 lines
No EOL
270 B
HCL
terraform {
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = "6.56.0"
|
|
}
|
|
}
|
|
|
|
backend "s3" {
|
|
bucket = "ara-engine-terraform-state"
|
|
key = "terraform.tfstate"
|
|
region = "eu-west-2"
|
|
}
|
|
|
|
required_version = ">= 1.2.0"
|
|
} |