Skip to content

Instantly share code, notes, and snippets.

@dev-daeun
Last active February 19, 2022 04:00
Show Gist options
  • Save dev-daeun/c0105989e3417b31f1bcf73258e3d765 to your computer and use it in GitHub Desktop.
Save dev-daeun/c0105989e3417b31f1bcf73258e3d765 to your computer and use it in GitHub Desktop.
terraform {
backend "s3" {
bucket = "devdaeun-terraform-state"
key = "terraform.tfstate"
region = "ap-northeast-2"
dynamodb_table = "terraform-state-lock"
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.27"
}
}
required_version = ">= 0.14.9"
}
provider "aws" {
profile = "default"
region = "ap-northeast-2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment