Compare commits

...

1 Commits

Author SHA1 Message Date
Patryk Gudalewicz a6092a219f "Migrating from Monaco to Terraform for management zone: CD_Openshift" 2023-03-01 19:06:08 +01:00
1 changed files with 23 additions and 0 deletions

View File

@ -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"
}
}
}
}
}