9 lines
226 B
HCL
9 lines
226 B
HCL
resource "aws_dynamodb_table" "terraform_locks" {
|
|
name = "terraform-state-locks-infra-aws-eks"
|
|
billing_mode = "PAY_PER_REQUEST"
|
|
hash_key = "LockID"
|
|
attribute {
|
|
name = "LockID"
|
|
type = "S"
|
|
}
|
|
} |