Fixing code

This commit is contained in:
Tom Archer
2024-07-10 08:56:57 -07:00
parent 65acca1e0c
commit 84022f9adf
4 changed files with 21 additions and 92 deletions

View File

@ -8,22 +8,4 @@ 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" {
type = number
description = "The initial quantity of nodes for the node pool."
default = 3
}
variable "msi_id" {
type = string
description = "The Managed Service Identity ID. Set this value if you're running this example using Managed Identity as the authentication method."
default = null
}
variable "username" {
type = string
description = "The admin username for the new cluster."
default = "azureadmin"
}