Skip to content

Instantly share code, notes, and snippets.

@candostdagdeviren
Created December 2, 2020 21:30
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 candostdagdeviren/55a52d20b6d32825ccd090e501cd1aa4 to your computer and use it in GitHub Desktop.
Save candostdagdeviren/55a52d20b6d32825ccd090e501cd1aa4 to your computer and use it in GitHub Desktop.
resource "aws_dynamodb_table" "MyTable" {
name = "MyTable-${terraform.workspace}"
read_capacity = 20
write_capacity = 20
hash_key = "myHashKey"
attribute {
name = "myHashKey"
type = "S"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment