generated from rhythmictech/terraform-terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
88 lines (73 loc) · 2.01 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
variable "name" {
description = "Moniker to apply to all resources in the module"
type = string
}
variable "secret_description" {
default = "A password created by Terraform" #tfsec:ignore:GEN001
description = "Set a description for the secret"
type = string
}
variable "tags" {
default = {}
description = "User-Defined tags"
type = map(string)
}
variable "lambda_version_constraint" {
default = "^1.0.3"
description = "NPM-style version constraint for the version of the lambda code you want to use"
type = string
}
variable "length" {
description = "Length of the password to be created"
type = number
}
variable "lower" {
default = true
description = "Whether to use lower case characters"
type = bool
}
variable "min_lower" {
default = 0
description = "Minimum number of lowercase letters"
type = number
}
variable "number" {
default = true
description = "Whether to use numbers"
type = bool
}
variable "min_numeric" {
default = 1
description = "Minimum number of numeric characters to use. Must be at least 1"
type = number
}
variable "special" {
default = true
description = "Whether to use special characters"
type = bool
}
variable "min_special" {
default = 1
description = "Minimum number of special characters to use. Must be at least 1"
type = number
}
variable "override_special" {
default = "!@#$%&*()-_=+[]{}<>:?"
description = "Supply your own list of special characters to use for string generation"
type = string
}
variable "upper" {
default = true
description = "Whether to use uppercase characters"
type = bool
}
variable "min_upper" {
default = 1
description = "Minimum number of uppercase characters to use. Must be at least 1"
type = number
}
variable "keepers" {
default = {}
description = "Arbitrary map of values that when changed will force a new password"
type = map(string)
}