Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed Jan 11, 2025
1 parent d60dad5 commit ca3ad97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/msk-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ resource "aws_msk_cluster" "this" {
volume_size = var.broker_storage.volume_size

provisioned_throughput {
enabled = provisioned_throughput.value.enabled
volume_throughput = provisioned_throughput.value.enabled ? provisioned_throughput.value.throughput : null
enabled = var.broker_storage.provisioned_throughput.enabled
volume_throughput = var.broker_storage.provisioned_throughput.enabled ? var.broker_storage.provisioned_throughput.throughput : null
}
}
}
Expand Down

0 comments on commit ca3ad97

Please sign in to comment.