dynamodb.tf 366 B

1234567891011121314151617181920212223
  1. resource "aws_dynamodb_table" "vault" {
  2. name = "vault-dynamodb"
  3. billing_mode = "PAY_PER_REQUEST"
  4. hash_key = "Path"
  5. range_key = "Key"
  6. attribute {
  7. name = "Path"
  8. type = "S"
  9. }
  10. attribute {
  11. name = "Key"
  12. type = "S"
  13. }
  14. point_in_time_recovery {
  15. enabled = true
  16. }
  17. tags = merge(var.standard_tags, var.tags)
  18. }