Created
November 17, 2019 23:00
-
-
Save KyMidd/2c17a42c920dc271473f37eb4245815e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # Require TF version to be same as or greater than 0.12.13 | |
| terraform { | |
| required_version = ">=0.12.13" | |
| #backend "s3" { | |
| # bucket = "your_globally_unique_bucket_name" | |
| # key = "terraform.tfstate" | |
| # region = "us-east-1" | |
| # dynamodb_table = "aws-locks" | |
| # encrypt = true | |
| #} | |
| } | |
| # Download any stable version in AWS provider of 2.36.0 or higher in 2.36 train | |
| provider "aws" { | |
| region = "us-east-1" | |
| version = "~> 2.36.0" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment