-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
83 lines (70 loc) · 2.17 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
variable "alarm_actions" {
type = string
default = "[]"
description = "List of actions. In JSON string format."
}
variable "alarm_action_match" {
type = string
default = "any"
description = "Trigger actions when an event is captured by Sentry and `any` or `all` of the specified conditions happen."
}
variable "alarm_conditions" {
type = string
default = "[]"
description = "List of conditions. In JSON string format."
}
variable "alarm_enabled" {
type = bool
default = true
description = "Defines if alarms should be created"
}
variable "alarm_filters" {
type = string
default = null
description = "A list of filters that determine if a rule fires after the necessary conditions have been met. In JSON string format."
}
variable "alarm_filter_match" {
type = string
default = null
description = "A string determining which filters need to be true before any actions take place. Required when a value is provided for filters."
}
variable "alarm_frequency" {
type = number
default = 5
description = "Perform actions at most once every X minutes for this issue."
}
variable "organization_slug" {
type = string
description = "The unique URL slug for this organization."
default = "sentry"
}
variable "platform" {
type = string
description = "The optional platform for this project."
default = "go"
}
variable "rate_limit_count" {
type = number
description = "Number of events that can be reported within the rate limit window."
default = 100
}
variable "rate_limit_window" {
type = number
description = "Length of time that will be considered when checking the rate limit."
default = 60
}
variable "resolve_age" {
type = number
description = "Hours in which an issue is automatically resolve if not seen after this amount of time."
default = 720
}
variable "team_slug" {
type = string
description = "The unique team slug."
default = "sentry"
}
variable "webhook_url" {
type = string
default = ""
description = "Newline seperated list of URLs for the webhook plugin."
}