forked from schubergphilis/terraform-aws-mcaf-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
63 lines (53 loc) · 1.43 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
variable "name" {
type = string
description = "The name of the user"
}
variable "create_policy" {
type = bool
default = null
description = "Overrule whether the user role policy has to be created"
}
variable "groups" {
type = set(string)
default = []
description = "Set of group names to attach to the user"
}
variable "path" {
type = string
default = "/"
description = "Path in which to create the user"
}
variable "permissions_boundary" {
type = string
default = null
description = "The ARN of the policy that is used to set the permissions boundary for the user."
}
variable "policy" {
type = string
default = null
description = "The policy to attach to the user"
}
variable "policy_arns" {
type = set(string)
default = []
description = "A set of policy ARNs to attach to the user"
}
variable "kms_key_id" {
type = string
default = null
description = "The KMS key ID used to encrypt all data"
}
variable "postfix" {
type = bool
default = true
description = "Postfix the user, policy and group names with Account, Policy and Group"
}
variable "ssm_ses_smtp_password_v4" {
type = bool
default = false
description = "Store the user's SES SMTP password in the SSM Parameter Store"
}
variable "tags" {
type = map(string)
description = "A mapping of tags to assign to the user"
}