Skip to content

Commit

Permalink
Merge pull request terraform-in-action#27 from DustinAlandzes/patch-6
Browse files Browse the repository at this point in the history
Remove the pessimistic constraint operator from terraform's required_version (~> 0.13) in chapter 10
  • Loading branch information
scottwinkler authored Oct 20, 2021
2 parents 6372a2c + 59ab67a commit 5510282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions chapter10/complete-part1/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "~> 0.13"
required_version = "> 0.13"
required_providers {
aws = "~> 3.6"
local = "~> 1.4"
Expand All @@ -24,4 +24,4 @@ resource "local_file" "credentials" { #A
aws_access_key_id = ${aws_iam_access_key.app2.id}
aws_secret_access_key = ${aws_iam_access_key.app2.secret}
EOF
}
}
2 changes: 1 addition & 1 deletion chapter10/complete-part2/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "~> 0.13"
required_version = "> 0.13"
required_providers {
aws = "~> 3.6"
local = "~> 1.4"
Expand Down

0 comments on commit 5510282

Please sign in to comment.