Skip to content

Commit

Permalink
Merge pull request #50 from lgallard/fix/version-syntax
Browse files Browse the repository at this point in the history
Fix: Terraform version syntax
  • Loading branch information
lgallard authored Jun 2, 2024
2 parents 4d1f112 + bc4765f commit a56f3c7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
terraform {
required_version = ">= v0.13.7"

required_providers {
aws = ">= 2.67.0"
aws = {
source = "hashicorp/aws"
version = ">= 2.67.0"
}
}
}

0 comments on commit a56f3c7

Please sign in to comment.