skip to Main Content

Azure – AKS ISTIO Gateway is not accessiable

I have created an AKS cluster using the following Terraform code resource "azurerm_virtual_network" "test" { name = var.virtual_network_name location = azurerm_resource_group.rg.location resource_group_name = azurerm_resource_group.rg.name address_space = [var.virtual_network_address_prefix] subnet { name = var.aks_subnet_name address_prefix = var.aks_subnet_address_prefix } subnet { name =…

VIEW QUESTION
Back To Top
Search