Closed dkooll closed 2 months ago
The dynamic blocks need to be better aligned with the provider naming conventions
for example:
dynamic "service_mesh_profile" { for_each = try(var.cluster.profile.service_mesh, null) != null ? { "default" = var.cluster.profile.service_mesh } : {}
or
dynamic "workload_autoscaler_profile" { for_each = try(var.cluster.profile.autoscaler, null) != null ? { "default" = var.cluster.profile.autoscaler } : {}
deprecated ones needs to be removed or replaced as well
The dynamic blocks need to be better aligned with the provider naming conventions
for example:
or