fixed node pool name len

This commit is contained in:
Tom Archer 2024-07-01 19:01:53 -07:00
parent bee854b03b
commit 7c29b17ca6
2 changed files with 4 additions and 4 deletions

View File

@ -17,10 +17,10 @@ resource "random_pet" "azurerm_kubernetes_cluster_dns_prefix" {
}
resource "random_string" "azurerm_kubernetes_cluster_node_pool" {
length = 12
length = 6
special = false
numeric = false
lower = true
lower = true
upper = false
}

View File

@ -25,11 +25,11 @@ variable "node_count_windows" {
variable "admin_username" {
type = string
description = "The admin username for the Windows node pool."
default = "azureuser"
default = "azureuser"
}
variable "admin_password" {
type = string
description = "The admin password for the Windows node pool."
default = "Passw0rd1234Us!"
default = "Passw0rd1234Us!"
}