Create a Windows-based Azure Kubernetes Service (AKS) cluster

This commit is contained in:
Tom Archer
2024-07-01 13:19:54 -07:00
parent 40be72ba42
commit 6e7acfb695
5 changed files with 132 additions and 0 deletions

View File

@ -0,0 +1,23 @@
variable "resource_group_location" {
type = string
default = "eastus"
description = "Location of the resource group."
}
variable "resource_group_name_prefix" {
type = string
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "node_count_linux" {
type = number
description = "The initial quantity of Linux nodes for the node pool."
default = 1
}
variable "node_count_windows" {
type = number
description = "The initial quantity of Windows nodes for the node pool."
default = 1
}