-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
24 lines (20 loc) · 931 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
# ---------------------------------------------------------------------------------------------------------------------
# REQUIRED VARIABLES
# ---------------------------------------------------------------------------------------------------------------------
variable "prefix" {
description = "A string prepended to the generated result."
type = string
}
# ---------------------------------------------------------------------------------------------------------------------
# OPTIONAL VARIABLES
# ---------------------------------------------------------------------------------------------------------------------
variable "length" {
description = "The length of the generated string."
type = number
default = 24
}
variable "include_special_characters" {
description = "Whether or not special characters should be included in the generated string."
type = bool
default = true
}