9 lines
226 B
Terraform
9 lines
226 B
Terraform
|
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"
|
||
|
}
|
||
|
}
|