Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created November 17, 2019 23:00
Show Gist options
  • Select an option

  • Save KyMidd/2c17a42c920dc271473f37eb4245815e to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/2c17a42c920dc271473f37eb4245815e to your computer and use it in GitHub Desktop.
# 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