skip to Main Content

Problem while deploying Aks using terraform in Azure

creating Cluster: (Managed Cluster Name "akscluster0132" / Resource Group "aksrg"): containerservice.ManagedClustersClient#CreateOrUpdate: Failure sending request: StatusCode=400 -- Original Error: Code="NoRegisteredProviderFound" Message="No registered resource provider found for location 'australiasoutheast' and API version '2022-01-02-preview' for type 'managedClusters'. The supported api-versions are '2017-08-31, 2018-03-31,…

VIEW QUESTION

Nginx – With Terraform, how do I integrate a basic-sku load balancer and basic-sku public ip address with an azurerm_kubernetes_cluster resource?

Provisioning a minimal aks cluster with azurerm_kubernetes_cluster with defaults creates a load_balancer_sku = standard along with a load_balancer_profile block. A LoadBalancer and IP Address is then visible in the resources list at portal.azure.com. However, setting load_balancer_sku = basic creates "nothing"…

VIEW QUESTION

Azure – get all the values from terraform for_each block in output

I am trying to fetch the private ip address from the below terraform block. resource "azurerm_private_endpoint" "private_endpoint_openAI" { for_each = var.private_endpoint_landing_zone_pe provider = azurerm.sub_private_endpoint_landing_zone name = each.key custom_network_interface_name = "${each.key}-nic" location = each.value.location resource_group_name = each.value.rg_name subnet_id = each.value.subnet_id tags…

VIEW QUESTION
Back To Top
Search