Hasan Iqbal
Added terraform skeleton code
a090cf6 unverified
raw
history blame
712 Bytes
# ##############################################################################
# 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}"
}
}