generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
57 lines (49 loc) · 1.21 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
variable "name" {
type = string
description = "Name (e.g. `test` or `mfa`)."
}
variable "path" {
type = string
default = "/"
description = "The path of the policy in MFA."
}
variable "Policy" {
type = any
default = ""
description = "The policy in json"
}
variable "attributes" {
type = list(any)
default = []
description = "Additional attributes (e.g. `1`)."
}
variable "repository" {
type = string
default = "https://github.com/clouddrove/terraform-aws-mfa"
description = "Terraform current module repo"
}
variable "environment" {
type = string
default = ""
description = "Environment (e.g. `prod`, `dev`, `staging`)."
}
variable "label_order" {
type = list(any)
default = []
description = "label order, e.g. `name`,`application`."
}
variable "managedby" {
type = string
default = "hello@clouddrove.com"
description = "ManagedBy, eg 'CloudDrove'."
}
variable "groups" {
type = list(string)
default = []
description = "enable MFA for the members in these groups"
}
variable "users" {
type = list(string)
default = []
description = "enable MFA for these users"
}