Skip to content

Commit

Permalink
Auto Format
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudpossebot committed Nov 4, 2021
1 parent 9e6f25d commit 7372db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ resource "aws_dynamodb_table" "with_server_side_encryption" {
}

resource "aws_dynamodb_table" "without_server_side_encryption" {
count = local.dynamodb_enabled && !var.enable_server_side_encryption ? 1 : 0
count = local.dynamodb_enabled && ! var.enable_server_side_encryption ? 1 : 0
name = local.dynamodb_table_name
billing_mode = var.billing_mode
read_capacity = var.billing_mode == "PROVISIONED" ? var.read_capacity : null
Expand Down

0 comments on commit 7372db1

Please sign in to comment.