Skip to content

Instantly share code, notes, and snippets.

@soerenmartius
Created March 29, 2020 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soerenmartius/79bcc7eeadfebd5407f60da9bb7c7560 to your computer and use it in GitHub Desktop.
Save soerenmartius/79bcc7eeadfebd5407f60da9bb7c7560 to your computer and use it in GitHub Desktop.
Terraform provider without s3 and state locks
# ---------------------------------------------------------------------------------------------------------------------
# SET TERRAFORM AND PROVIDER REQUIREMENTS
# ---------------------------------------------------------------------------------------------------------------------
terraform {
required_version = "~> 0.12.24"
required_providers {
aws = "~> 2.4"
}
}
provider "aws" {
region = "us-east-1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment