Is there an existing issue for this?
Description
See https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_cluster
I need this change to set data collection parameters in AKS following hashicorp/terraform-provider-azurerm#21406.
I appreciate the work you guys are doing!
New or Affected Resource(s)/Data Source(s)
azurerm_kubernetes_cluster
Potential Terraform Configuration
# module.aks main.tf
dynamic "oms_agent" {
for_each = var.log_analytics_workspace_enabled ? ["oms_agent"] : []
content {
log_analytics_workspace_id = local.log_analytics_workspace.id
msi_auth_for_monitoring_enabled = var.msi_auth_for_monitoring_enabled
}
}
# variables.tf
variable "msi_auth_for_monitoring_enabled" {
type = bool
default = false
description = "(Optional) Is managed identity authentication for monitoring enabled? Defaults to `false`"
}
References
See PR: #446
Is there an existing issue for this?
Description
See https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_cluster
I need this change to set data collection parameters in AKS following hashicorp/terraform-provider-azurerm#21406.
I appreciate the work you guys are doing!
New or Affected Resource(s)/Data Source(s)
azurerm_kubernetes_cluster
Potential Terraform Configuration
References
See PR: #446