This commit is contained in:
Tom Archer 2024-07-11 05:21:16 -07:00
parent e442bda05b
commit 15a19838ad
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ resource "azurerm_kubernetes_cluster" "aks_cluster" {
network_profile {
network_plugin = "azure"
load_balancer_sku = "Standard"
load_balancer_sku = "standard"
}
identity {

View File

@ -3,5 +3,5 @@ output "resource_group_name" {
}
output "aks_cluster_name" {
value = azurerm_kubernetes_cluster.aks.name
value = azurerm_kubernetes_cluster.aks_cluster.name
}