Skip to content

Commit

Permalink
Merge pull request #1237 from Aneurysm9/fix/TFProviderVersionsTerraform
Browse files Browse the repository at this point in the history
Pin `hashicorp/aws` provider version in EC2/ECS/EKS test definitions
  • Loading branch information
Aneurysm9 authored May 30, 2023
2 parents 6863f30 + 2e2c73f commit 011c8c0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions terraform/ec2/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
terraform {
required_version = "~> 1.0"

required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
10 changes: 10 additions & 0 deletions terraform/ecs/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
terraform {
required_version = "~> 1.0"

required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
10 changes: 10 additions & 0 deletions terraform/eks/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
terraform {
required_version = "~> 1.0"

required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}

0 comments on commit 011c8c0

Please sign in to comment.