This repository has been archived by the owner on Oct 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating code to require TF 0.13 and pinning aws + random versions (#21)
* updating code to require TF 0.13 and pinning aws + random provider versions * pinning version of template provider * update CHANGELOG
- Loading branch information
1 parent
1728ab5
commit ac97ed4
Showing
3 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
# names required TF version | ||
terraform { | ||
required_version = ">= 0.12" | ||
required_version = ">= 0.13" | ||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = "2.70.0" | ||
} | ||
random = { | ||
source = "hashicorp/random" | ||
version = "2.3.0" | ||
} | ||
template = { | ||
source = "hashicorp/template" | ||
version = "2.1.2" | ||
} | ||
} | ||
} |