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,19 @@
terraform {
required_version = ">= 1.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>3.0"
}
random = {
source = "hashicorp/random"
version = "~>3.0"
}
}
}
provider "azurerm" {
features {
}
}