randomized resource group name for resources

This commit is contained in:
Tom Archer
2022-03-05 11:52:02 -08:00
parent 742e4c7a5d
commit e4a7a6e1f3
5 changed files with 40 additions and 31 deletions

View File

@ -1,9 +1,11 @@
variable "resource_group_name" {
description = "Name of the resource group."
variable "resource_group_name_prefix" {
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 "location" {
description = "Location of the cluster."
variable "resource_group_location" {
default = "eastus"
description = "Location of the resource group."
}
variable "aks_service_principal_app_id" {