terraform/modules/avs_expressroute_gateway/variables.tf (45 lines of code) (raw):
#################################################################
# module variables
#################################################################
variable "expressroute_pip_name" {
type = string
description = "Azure resource name assigned to the expressroute public ip"
}
variable "expressroute_gateway_name" {
type = string
description = "Azure resource name assigned to the AVS expressroute gateway instance"
}
variable "expressroute_gateway_sku" {
type = string
description = "The sku for the AVS expressroute gateway"
default = "Standard"
}
variable "rg_name" {
type = string
description = "Resource Group Name where the expressroute gateway and the associated public ip are being deployed"
}
variable "rg_location" {
type = string
description = "Resource Group location"
default = "westus2"
}
variable "gateway_subnet_id" {
type = string
description = "The full resource id for the subnet where the bastion will be deployed"
}
variable "tags" {
type = map(string)
description = "List of the tags that will be assigned to each resource"
}
variable "zones" {
type = list(string)
description = "List of zones where this resource should be located."
default = ["1","2","3"]
}
#################################################################
# telemetry variables
#################################################################
variable "module_telemetry_enabled" {
type = bool
description = "toggle the telemetry on/off for this module"
default = true
}
variable "guid_telemetry" {
type = string
description = "guid used for telemetry identification. Defaults to module guid, but overrides with root if needed."
default = "0f9a8adc-9d37-40b3-aaed-ab34b95cf6dd"
}