Added required fields to default_node_pool block

This commit is contained in:
Tom Archer 2024-07-11 05:39:38 -07:00
parent 15a19838ad
commit c20885dabc

View File

@ -22,6 +22,8 @@ resource "azurerm_kubernetes_cluster" "aks_cluster" {
type = "VirtualMachineScaleSets"
name = "default"
node_count = 1
max_count = 3
min_count = 1
vm_size = "Standard_DS2_v2"
enable_auto_scaling = true
}