generated from kabisa/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
61 lines (49 loc) · 1.13 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
variable "env" {
type = string
}
variable "service" {
type = string
}
variable "service_display_name" {
type = string
default = null
}
variable "trace_span_name" {
type = string
default = "http.request"
description = <<-EOT
Traces contain a span name. Example:
trace.<SPAN_NAME>.<METRIC_SUFFIX>
trace.<SPAN_NAME>.<METRIC_SUFFIX>.<2ND_PRIM_TAG>_service
The name of the operation or span.name (examples: redis.command, pylons.request, rails.request, mysql.query
https://docs.datadoghq.com/tracing/guide/metrics_namespace/
EOT
}
variable "notification_channel" {
type = string
}
variable "additional_tags" {
type = list(string)
default = []
}
variable "name_prefix" {
type = string
default = ""
}
variable "name_suffix" {
type = string
default = ""
}
variable "locked" {
type = bool
default = true
}
variable "latency_excluded_resource_names" {
type = list(string)
description = "List of resource names to exclude in latency oriented monitors or SLOs. Some requests might be batch requests"
default = []
}
variable "filters_str_override" {
type = string
default = null
}