generated from kabisa/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatadog-agent-variables.tf
More file actions
45 lines (37 loc) · 867 Bytes
/
datadog-agent-variables.tf
File metadata and controls
45 lines (37 loc) · 867 Bytes
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
variable "datadog_agent_enabled" {
type = bool
default = true
}
variable "datadog_agent_critical" {
type = number
default = 1
}
variable "datadog_agent_evaluation_period" {
type = string
default = "last(2)"
}
variable "datadog_agent_priority" {
type = number
default = 2
}
variable "datadog_agent_note" {
type = string
default = ""
}
variable "datadog_agent_docs" {
type = string
default = "Returns CRITICAL if Datadog is agent is not running or reporting data for %d minutes"
}
variable "datadog_agent_filter_override" {
type = string
default = ""
}
variable "datadog_agent_alerting_enabled" {
type = bool
default = true
}
variable "datadog_agent_no_data_timeframe" {
description = "Timeframe in minutes after which we send alerts if a host is unavailable"
type = number
default = 2
}