This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
variables.tf
63 lines (52 loc) · 1.49 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
57
58
59
60
61
62
63
variable "namespace" {
type = "string"
description = "Namespace (e.g. `cp` or `cloudposse`)"
}
variable "stage" {
type = "string"
description = "Stage (e.g. `prod`, `dev`, `staging`)"
}
variable "name" {
type = "string"
description = "Application or solution name (e.g. `app`)"
}
variable "delimiter" {
type = "string"
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name` and `attributes`"
}
variable "attributes" {
type = "list"
default = []
description = "Additional attributes (e.g. `1`)"
}
variable "tags" {
type = "map"
default = {}
description = "Additional tags (e.g. map(`BusinessUnit`,`XYZ`)"
}
variable "kms_key_arn" {
description = "ARN of the KMS key which will decrypt secret strings"
}
variable "ssm_actions" {
type = "list"
default = ["ssm:GetParametersByPath", "ssm:GetParameters"]
description = "Actions to allow in the policy"
}
variable "ssm_resources" {
type = "list"
default = ["*"]
description = "Resources to apply the actions specified in the policy"
}
variable "force_destroy" {
default = "false"
description = "Destroy even if it has non-Terraform-managed IAM access keys, login profiles or MFA devices"
}
variable "path" {
default = "/"
description = "Path in which to create the user"
}
variable "enabled" {
default = "true"
description = "Set to false to prevent the module from creating any resources"
}