-
Notifications
You must be signed in to change notification settings - Fork 7
/
variables.tf
61 lines (50 loc) · 1.38 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
// Specific to module
variable "budget_name_prefix" {
description = "Text to prefix budget names with"
default = ""
}
variable "budget_name" {
description = "Budget name (when managing a single budget)"
default = ""
}
variable "budget_type" {
description = "Type of budget"
default = "COST"
}
variable "budgets" {
description = "List of account budget maps. Each map contains: name (name of budget), account (AWS linked account ID), and limit (budget limit)"
type = "list"
default = []
}
variable "cost_filter_type" {
description = "Cost filter type (when managing a single budget)"
default = "TagKeyValue"
}
variable "limit_amount" {
description = "Budget limit amount"
default = "100"
}
variable "limit_unit" {
description = "Budget units"
default = "USD"
}
variable "tag_key" {
description = "Tag key for cost filter by tag (TagKeyValue)"
default = "Stack"
}
variable "tag_value" {
description = "Tag value for cost filter by tag (TagKeyValue)"
default = ""
}
variable "time_unit" {
description = "Budget time period"
default = "MONTHLY"
}
variable "email" {
description = "Email address to send budget alerts to. Used by account budgets."
default = ""
}
variable "emails" {
description = "List of email addresses to send budget alerts to. Maximum of 10. Used by single budgets"
default = []
}