diff --git a/EMEA_PROD/management_zone/cd_openshift.tf b/EMEA_PROD/management_zone/cd_openshift.tf new file mode 100644 index 00000000..7e4d2be6 --- /dev/null +++ b/EMEA_PROD/management_zone/cd_openshift.tf @@ -0,0 +1,23 @@ +# DEFINE dynatrace_management_zone.CD_Openshift.id = 5560806819234660207 +resource "dynatrace_management_zone" "CD_Openshift" { + name = "CD_Openshift" + rules { + type = "HOST" + enabled = true + conditions { + key { + type = "STATIC" + attribute = "HOST_TAGS" + } + tag { + # negate = false + operator = "EQUALS" + value { + context = "CONTEXTLESS" + key = "Platform" + value = "OpenShift" + } + } + } + } +}