diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/main.tf b/quickstart/201-k8s-cluster-with-tf-and-aks/main.tf index 226cc741..bace6bb2 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/main.tf +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/main.tf @@ -58,15 +58,8 @@ resource "azurerm_kubernetes_cluster" "k8s" { client_secret = var.aks_service_principal_client_secret } - addon_profile { - oms_agent { - enabled = true - log_analytics_workspace_id = azurerm_log_analytics_workspace.test.id - } - } - network_profile { - load_balancer_sku = "Standard" + load_balancer_sku = "standard" network_plugin = "kubenet" }