Browse Source

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

Co-authored-by: Chad Swenson <chadswen@gmail.com>
pull/12477/head
k8s-infra-cherrypick-robot 3 months ago
committed by GitHub
parent
commit
6921b70a22
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions
  1. 6
      contrib/terraform/aws/create-infrastructure.tf

6
contrib/terraform/aws/create-infrastructure.tf

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

Loading…
Cancel
Save