-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
106 lines (83 loc) · 2.37 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
variable "default_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to all AWS resources created by this module.
EOS
}
variable "environment" {
type = string
description = <<EOS
The environment to use in the Rollbar item.
EOS
}
variable "json_key" {
type = string
default = "-"
description = <<EOS
If the message is JSON, this is the key to use to extract the message used as Rollbar item title.
If the value is "-", the implementation will not attempt to parse the message as JSON.
EOS
}
variable "level" {
type = string
description = <<EOS
The level to use in the Rollbar item.
EOS
}
variable "name" {
type = string
description = <<EOS
The name used in all related AWS resources.
EOS
}
variable "pipes_pipe_iam_role_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the IAM role created for the EventBridge Pipe created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}
variable "pipes_pipe_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the EventBridge Pipe created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}
variable "rollbar_project_access_token" {
type = object({
access_token = string
})
description = <<EOS
The Rollbar project access token used to post items to Rollbar. It must the `post_server_item` scope.
EOS
}
variable "sfn_state_machine_iam_role_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the IAM role created for the Step Functions state machine created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}
variable "sfn_state_machine_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the Step Functions state machine created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}
variable "sns_topic_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the SNS topic created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}
variable "sqs_queue_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the SQS queue created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}