Added README

This commit is contained in:
Tom Archer
2024-10-08 12:22:17 -07:00
parent 7a5a0062e4
commit 42d2f05b88
3 changed files with 30 additions and 7 deletions

View File

@ -39,7 +39,7 @@ resource "azurerm_kubernetes_cluster" "aks" {
default_node_pool {
name = "agentpool"
vm_size = "Standard_D2_v2"
vm_size = var.aks_node_vm_size
node_count = var.aks_node_count
vnet_subnet_id = element(tolist(azurerm_virtual_network.vnet.subnet), 0).id
}