зеркало из
1
0
Форкнуть 0
terraform-azurerm-naming/variables.tf

30 строки
819 B
HCL

variable "prefix" {
type = list(string)
default = []
description = "It is not recommended that you use prefix by azure you should be using a suffix for your resources."
}
variable "suffix" {
type = list(string)
default = []
description = "It is recommended that you specify a suffix for consistency. please use only lowercase characters when possible"
}
variable "unique-seed" {
description = "Custom value for the random characters to be used"
type = string
default = ""
}
variable "unique-length" {
description = "Max length of the uniqueness suffix to be added"
type = number
default = 4
}
variable "unique-include-numbers" {
description = "If you want to include numbers in the unique generation"
type = bool
default = true
}