Closed cveld closed 9 months ago
Currently the auto_scaler_profile code is as follows:
for_each = { for k, v in try(var.cluster.auto_scaler_profile, {}) : k => v }
This should be changed in:
for_each = var.cluster.auto_scaler_profile != null ? [var.cluster.auto_scaler_profile] : []
As the auto_scaler_profile block can only exist once.
auto_scaler_profile
Currently the auto_scaler_profile code is as follows:
This should be changed in:
As the
auto_scaler_profile
block can only exist once.