AVS-Landing-Zone/GreenField/Terraform/variables.tf (54 lines of code) (raw):

#----------------------------------------------------------------- # DO NOT CHANGE # Update any variables from the terraform.tfvars file as required #----------------------------------------------------------------- variable "prefix" { type = string } variable "region" { type = string } variable "avs-networkblock" { type = string } variable "avs-sku" { type = string default = "AV36P" } variable "avs-hostcount" { type = number default = 3 } variable "adminusername" { type = string } variable "jumpboxsku" { type = string default = "Standard_D2as_v4" } variable "vnetaddressspace" { type = string } variable "gatewaysubnet" { type = string } variable "azurebastionsubnet" { type = string } variable "jumpboxsubnet" { type = string } variable "hcx_key_names" { type = list(string) description = "list of key names to use when generating hcx site activation keys." default = [] } variable "key_vault_name" { type = string description = "The name for the key vault used to store the jump virtual machine password." } variable "nsg_name" { type = string description = "The name to use for the default NSG deployed with the networks." } variable "telemetry_enabled" { type = bool description = "toggle the telemetry on/off for this module" default = true }