mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-02-13 23:42:45 +00:00
11 lines
212 B
HCL
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"
|
|
}
|
|
}
|