generated from terraform-module/terraform-module-blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
variables.tf
55 lines (45 loc) · 1.28 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
variable "policy_name" {
default = "managed-force-mfa-policy"
description = "The name of the policy."
type = string
}
variable "account_id" {
default = "*"
description = "Account identification. (Optional, default '*')"
type = string
}
variable "manage_own_access_keys" {
default = false
description = "Allow a new AWS secret access key and corresponding AWS access key ID for the specified user."
type = bool
}
variable "manage_own_signing_certificates" {
default = false
description = "Allow managing signing certificates."
type = bool
}
variable "manage_own_ssh_public_keys" {
default = false
description = "Allow managing ssh public keys."
type = bool
}
variable "manage_own_git_credentials" {
default = false
description = "Allow managing git credentials."
type = bool
}
variable "manage_explicit_deny" {
default = false
description = "Manage explicit deny."
type = bool
}
variable "groups" {
default = []
description = "Enforce MFA for the members in these groups. (Optional, default '[]')"
type = list(string)
}
variable "path" {
default = "/"
description = "Path in which to create the policy. (Optional, default '/')"
type = string
}