Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
TomArcherMsft committed Jul 11, 2024
1 parent c20885d commit e9dfde8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions quickstart/101-aks-standard-lb-and-vmss/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ resource "azurerm_kubernetes_cluster" "aks_cluster" {
name = random_string.aks_cluster_name.result
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name
dns_prefix = "myakscluster"
dns_prefix = "myakscluster"

default_node_pool {
type = "VirtualMachineScaleSets"
name = "default"
node_count = 1
max_count = 3
min_count = 1
vm_size = "Standard_DS2_v2"
type = "VirtualMachineScaleSets"
name = "default"
node_count = 1
max_count = 3
min_count = 1
vm_size = "Standard_DS2_v2"
enable_auto_scaling = true
}

network_profile {
network_plugin = "azure"
network_plugin = "azure"
load_balancer_sku = "standard"
}

Expand Down

0 comments on commit e9dfde8

Please sign in to comment.