-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
29 lines (25 loc) · 870 Bytes
/
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
variable "confluent_metrics_dataset_name" {
description = "The name of the Confluent metrics dataset."
type = string
default = "confluent-metrics"
}
variable "kafka_metrics_dataset_name" {
description = "The name of the Kafka metrics dataset."
type = string
default = "confluent-metrics"
}
variable "create_datasets" {
description = "When set to true two datasets, confluent-metrics and kafka-metrics, will be created. Default is false."
type = bool
default = false
}
variable "create_columns" {
description = "When set to true the columns will be created. Default is false."
type = bool
default = false
}
variable "time_range" {
description = "The default time range for queries in the Refinery metrics board - Defaults to 86400 seconds (24hours)"
type = number
default = 86400
}