forked from Azure/terraform-azurerm-naming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
29 lines (25 loc) · 819 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
}