forked from notablehealth/terraform-google-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables-data.tf
More file actions
28 lines (28 loc) · 761 Bytes
/
variables-data.tf
File metadata and controls
28 lines (28 loc) · 761 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
variable "metric_descriptors" {
description = "List of Metric Dedscriptor configuration objects"
type = list(object({
description = string
display_name = string
labels = optional(object({
description = optional(string)
key = string
value_type = optional(string) # validate
}))
launch_stage = optional(string) # validate
metadata = optional(object({
ingest_delay = optional(string)
sample_period = optional(string)
}))
metric_kind = string # validate
type = string
unit = optional(string)
value_type = string # validate
}))
default = [{
description = ""
display_name = ""
metric_kind = ""
type = ""
value_type = ""
}]
}