Skip to content

Commit 1676078

Browse files
Add version pinning for AWS tf provider to fix CI (#12326)
Co-authored-by: Chad Swenson <chadswen@gmail.com>
1 parent 266117d commit 1676078

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

contrib/terraform/aws/create-infrastructure.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
terraform {
22
required_version = ">= 0.12.0"
3+
required_providers {
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = "~> 5.0"
7+
}
8+
}
39
}
410

511
provider "aws" {

0 commit comments

Comments
 (0)