-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
78 lines (63 loc) · 2 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
variable "aws_account_id" {
description = "The AWS Account ID number of the account."
}
variable "support_iam_role_name" {
description = "The name of the the support role."
default = "IAM-Support"
}
variable "support_iam_role_policy_name" {
description = "The name of the support role policy."
default = "IAM-Support-Role"
}
variable "support_iam_role_principal_arns" {
type = list(any)
description = "List of ARNs of the IAM principal elements by which the support role could be assumed."
}
variable "max_password_age" {
description = "The number of days that an user password is valid."
default = 0
}
variable "minimum_password_length" {
description = "Minimum length to require for user passwords."
default = 14
}
variable "password_reuse_prevention" {
description = "The number of previous passwords that users are prevented from reusing."
default = 24
}
variable "require_lowercase_characters" {
description = "Whether to require lowercase characters for user passwords."
default = false
}
variable "require_numbers" {
description = "Whether to require numbers for user passwords."
default = false
}
variable "require_uppercase_characters" {
description = "Whether to require uppercase characters for user passwords."
default = false
}
variable "require_symbols" {
description = "Whether to require symbols for user passwords."
default = false
}
variable "allow_users_to_change_password" {
description = "Whether to allow users to change their own password."
default = true
}
variable "create_password_policy" {
type = bool
description = "Define if the password policy should be created."
default = true
}
variable "create_support_role" {
type = bool
description = "Define if the support role should be created."
default = true
}
variable "tags" {
description = "Specifies object tags key and value. This applies to all resources created by this module."
default = {
"Terraform" = true
}
}