Skip to content

Instantly share code, notes, and snippets.

@dev-daeun
Created February 19, 2022 05:07
Show Gist options
  • Save dev-daeun/809826cb88cf0947023c06820c65b7e5 to your computer and use it in GitHub Desktop.
Save dev-daeun/809826cb88cf0947023c06820c65b7e5 to your computer and use it in GitHub Desktop.
resource "aws_dynamodb_table" "terraform_state_lock" {
name = "terraform-state-lock"
hash_key = "LockID"
billing_mode = "PAY_PER_REQUEST"
attribute {
name = "LockID"
type = "S"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment