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

Co-authored-by: Chad Swenson <chadswen@gmail.com>
This commit is contained in:
k8s-infra-cherrypick-robot
2025-06-19 19:24:51 -07:00
committed by GitHub
parent 6f9d003999
commit 6921b70a22

View File

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