Browse Source

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

pull/12322/head
Chad Swenson 3 months ago
committed by GitHub
parent
commit
540cfd1087
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