Skip to content

Instantly share code, notes, and snippets.

@vhaberkorn
Created March 31, 2021 21:05
Show Gist options
  • Save vhaberkorn/bc676a89b4396dff737275af396a80a4 to your computer and use it in GitHub Desktop.
Save vhaberkorn/bc676a89b4396dff737275af396a80a4 to your computer and use it in GitHub Desktop.
terraform snippet 01
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
}
}
# Configure the AWS Provider
provider "aws" {
region = "us-east-1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment