forked from cloudposse/terraform-aws-iam-system-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
43 lines (35 loc) · 997 Bytes
/
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 "name" {
description = "The Name of the application or solution (e.g. `bastion` or `portal`)"
}
variable "namespace" {
description = "Namespace (e.g. `cp` or `cloudposse`)"
}
variable "stage" {
description = "Stage (e.g. `prod`, `dev`, `staging`)"
}
variable "attributes" {
type = "list"
default = []
}
variable "tags" {
type = "map"
default = {}
description = "Additional tags (e.g. `map('BusinessUnit','XYZ')`)"
}
variable "delimiter" {
type = "string"
default = "-"
description = "Delimiter to be used between `name`, `namespace`, `stage`, etc."
}
variable "force_destroy" {
description = "Destroy even if it has non-Terraform-managed IAM access keys, login profile or MFA devices."
default = "false"
}
variable "path" {
description = "Path in which to create the user"
default = "/"
}
variable "enabled" {
description = "Set to false to prevent the module from creating any resources"
default = "true"
}