Add version pinning for AWS tf provider to fix CI (#12323)

This commit is contained in:
Chad Swenson 2025-06-19 20:38:51 -05:00 committed by GitHub
parent f58315f69e
commit 540cfd1087
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,11 @@
terraform {
required_version = ">= 0.12.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}
provider "aws" {