File size: 712 Bytes
a090cf6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# ##############################################################################
# DynamoDB Table - Default
# ##############################################################################
resource "aws_dynamodb_table" "openfactcheck_default" {
name = "openfactcheck-db-${terraform.workspace}-${var.aws_region}"
billing_mode = "PAY_PER_REQUEST"
hash_key = "PK"
global_secondary_index {
name = "gs1"
hash_key = "GS1PK"
projection_type = "ALL"
}
// ID
attribute {
name = "PK"
type = "S"
}
// Type
attribute {
name = "GS1PK"
type = "S"
}
tags = {
Name = "OpenFactCheck - DynamoDB - ${terraform.workspace} - ${var.aws_region}"
}
}
|