File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ resource "google_container_cluster" "main" {
6464 dynamic "cost_management_config" {
6565 for_each = var. cost_management_config != null ? [var . cost_management_config ] : []
6666 content {
67- enabled = cost_management_config. enabled
67+ enabled = cost_management_config. value . enabled
6868 }
6969 }
7070
Original file line number Diff line number Diff line change @@ -1121,7 +1121,7 @@ resource "google_container_cluster" "main" {
11211121 dynamic "cost_management_config" {
11221122 for_each = var. cost_management_config != null ? [var . cost_management_config ] : []
11231123 content {
1124- enabled = cost_management_config. enabled
1124+ enabled = cost_management_config. value . enabled
11251125 }
11261126 }
11271127
You can’t perform that action at this time.
0 commit comments