1234567891011121314151617181920212223 |
- resource "aws_dynamodb_table" "vault" {
- name = "vault-dynamodb"
- billing_mode = "PAY_PER_REQUEST"
- hash_key = "Path"
- range_key = "Key"
- attribute {
- name = "Path"
- type = "S"
- }
- attribute {
- name = "Key"
- type = "S"
- }
- point_in_time_recovery {
- enabled = true
- }
- tags = merge(local.standard_tags, var.tags)
- }
|