Compare commits

...

1 Commits

Author SHA1 Message Date
Patryk Gudalewicz fff24d09bc "Migrating from Monaco to Terraform for management zone: CD_ipa-speech" 2023-03-01 18:52:15 +01:00
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
# DEFINE dynatrace_management_zone.CD_ipa-speech.id = 1460509061257503151
resource "dynatrace_management_zone" "CD_ipa-speech" {
name = "CD_ipa-speech"
description = "created by Michael"
rules {
type = "SERVICE"
enabled = true
conditions {
key {
type = "STATIC"
attribute = "SERVICE_DETECTED_NAME"
}
string {
# case_sensitive = false
# negate = false
operator = "EQUALS"
value = "cn-ipa-composite-service"
}
}
conditions {
key {
type = "STATIC"
attribute = "SERVICE_TAGS"
}
tag {
# negate = false
operator = "EQUALS"
value {
context = "CONTEXTLESS"
key = "Environment"
value = "PROD"
}
}
}
}
}