-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
variables.tf
59 lines (50 loc) · 1.56 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
variable "password_policy_enabled" {
description = "Whether or not to create the IAM account password policy"
type = bool
default = true
}
variable "allow_users_to_change_password" {
description = "Whether to allow users to change their own password"
type = bool
default = true
}
variable "hard_expiry" {
description = "Whether users are prevented from setting a new password after their password has expired (i.e. require administrator reset)"
type = bool
default = false
}
variable "max_password_age" {
description = "The number of days that a user's password is valid"
type = number
default = 90
}
variable "minimum_password_length" {
description = "Minimum length to require for user passwords"
type = number
default = 14
}
variable "password_reuse_prevention" {
description = "The number of previous passwords that users are prevented from reusing"
type = number
default = 24
}
variable "require_lowercase_characters" {
description = "Whether to require lowercase characters for user passwords"
type = bool
default = true
}
variable "require_uppercase_characters" {
description = "Whether to require uppercase characters for user passwords"
type = bool
default = true
}
variable "require_numbers" {
description = "Whether to require numbers for user passwords"
type = bool
default = true
}
variable "require_symbols" {
description = "Whether to require symbols for user passwords"
type = bool
default = true
}