Skip to content

Commit ca3ad97

Browse files
committed
Fix typo
1 parent d60dad5 commit ca3ad97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/msk-cluster/cluster.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ resource "aws_msk_cluster" "this" {
7171
volume_size = var.broker_storage.volume_size
7272

7373
provisioned_throughput {
74-
enabled = provisioned_throughput.value.enabled
75-
volume_throughput = provisioned_throughput.value.enabled ? provisioned_throughput.value.throughput : null
74+
enabled = var.broker_storage.provisioned_throughput.enabled
75+
volume_throughput = var.broker_storage.provisioned_throughput.enabled ? var.broker_storage.provisioned_throughput.throughput : null
7676
}
7777
}
7878
}

0 commit comments

Comments
 (0)