Pull request #502: COMFY-1087: Fix SLO condition

Merge in OPAPM/coco_apm_terraform_onboarding from feature/fix-tf to master

* commit 'c212003aed78151c2a7d7e9ac0705c40cd832562':
  COMFY-1087: Fix SLO condition
pull-requests/507/from
Markus Dlugi (DE-721) 2023-04-28 14:01:06 +00:00 committed by PATRYK GUDALEWICZ (ext.)
commit 5e61f755db
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
data "dynatrace_management_zone" "mz" { name = var.managementZoneName }
data "dynatrace_slo" "slo" {
count = var.sloName ? 1 : 0
count = var.sloName != null ? 1 : 0
name = var.sloName
}