24 lines
605 B
HCL
24 lines
605 B
HCL
# ManagementZone Variables
|
|
variable "name" { default = "" }
|
|
variable "description" { default = "" }
|
|
variable "ownerMail" { default = "" }
|
|
|
|
variable "evaluation" { default = "AGGREGATE" } //currently nothing else possible
|
|
|
|
#Target and warning percentage of the SLO as integer
|
|
variable "target" { default = "98" }
|
|
variable "warning" { default = "99" }
|
|
|
|
#Timeframe of the default evaluation timeframe
|
|
variable "timeframe" { default = "-1d" }
|
|
|
|
#Metrics to be evaluated, must result in a percentage metric
|
|
variable "metric_expression" { default = "" }
|
|
|
|
|
|
##Optional Fields
|
|
variable "filter" { default = "" }
|
|
|
|
|
|
|