-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
43 lines (37 loc) · 1.24 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
variable "users" {
type = map(object({
pgp_key = string
tags = map(string)
}))
description = "Key-value mapping of IAM User(s)"
}
variable "force_destroy" {
type = bool
default = false
description = "When destroying this user, destroy even if it has non-Terraform-managed IAM access keys, login profile or MFA devices. Without force_destroy a user with non-Terraform-managed access keys and login profile will fail to be destroyed."
}
variable "password_length" {
type = number
default = 20
description = "The length of the generated password on resource creation."
}
variable "password_reset_required" {
type = bool
default = true
description = "Whether the user should be forced to reset the generated password on resource creation."
}
variable "path" {
type = string
default = "/"
description = "Path in which to create the user(s)."
}
variable "permissions_boundary" {
type = string
default = ""
description = "The ARN of the policy that is used to set the permissions boundary for the user(s)."
}
variable "tags" {
type = map(string)
default = {}
description = "Key-value mapping of default tags for all IAM users."
}