coco_terraform_config/_templates/service-level-objective.tf

26 lines
900 B
HCL

module {ResourceName} {
source = "../../_dynatrace-base-modules/dynatrace-service-level-objective"
name = "{name}"
description = "{description}"
#entity selector object
filter = "{filter}"
#metric expression of the calculation as done in data explorer ui
metric_expression = "{metric_expression}"
#if not set (removed) it's defaulted to "-1d"
timeframe = "{timeframe}"
#currently the only possible value
evaluation = "AGGREGATE"
#Target and warning percentage of the SLO as double
target = "{target}" #if not set(removed) it's defaulted to 98
warning = "{warning}" #if not set(removed) it's defaulted to 99
}