-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
34 lines (29 loc) · 1.05 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
variable "user_name" {
type = string
description = "The name of the user to create."
}
variable "user_public_gpg_key" {
type = string
default = ""
description = "The contents of the public GPG key for the user, base 64 encoded. Only required if 'include_login_profile' or 'include_access_key' are 'yes'."
}
variable "user_password_length" {
type = number
default = 32
description = "The length of the user password to create. Only required if 'include_login_profile' is 'yes'."
}
variable "enforce_mfa" {
default = "yes"
type = string
description = "Whether or not to require MFA for most actions. Defaults to 'yes'."
}
variable "include_login_profile" {
default = "yes"
type = string
description = "Whether or not to generate a login profile for the user. Uses the provided GPG key to encrypt the credentials. Defaults to 'yes'."
}
variable "include_access_key" {
default = "yes"
type = string
description = "Whether or not to generate an access key for the user. Uses the provided GPG key to encrypt the credentials. Defaults to 'yes'."
}