We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d60dad5 commit ca3ad97Copy full SHA for ca3ad97
modules/msk-cluster/cluster.tf
@@ -71,8 +71,8 @@ resource "aws_msk_cluster" "this" {
71
volume_size = var.broker_storage.volume_size
72
73
provisioned_throughput {
74
- enabled = provisioned_throughput.value.enabled
75
- 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
76
}
77
78
0 commit comments