Files
deflock/terraform/modules/operator_info/main.tf
2025-05-22 23:35:26 -06:00

11 lines
212 B
HCL

resource "aws_dynamodb_table" "operator_info" {
name = var.module_name
billing_mode = "PAY_PER_REQUEST"
hash_key = "wikidataId"
attribute {
name = "wikidataId"
type = "S"
}
}