"Migrating from Monaco to Terraform for management zone: CD_CSF"
parent
5ad7b30cd3
commit
4101dc3fb6
|
|
@ -0,0 +1,95 @@
|
||||||
|
# DEFINE dynatrace_management_zone.CD_CSF.id = 7215648952556812112
|
||||||
|
resource "dynatrace_management_zone" "CD_CSF" {
|
||||||
|
name = "CD_CSF"
|
||||||
|
rules {
|
||||||
|
type = "CLOUD_APPLICATION"
|
||||||
|
enabled = true
|
||||||
|
conditions {
|
||||||
|
key {
|
||||||
|
type = "STATIC"
|
||||||
|
attribute = "CLOUD_APPLICATION_NAME"
|
||||||
|
}
|
||||||
|
string {
|
||||||
|
case_sensitive = true
|
||||||
|
# negate = false
|
||||||
|
operator = "CONTAINS"
|
||||||
|
value = "charging-station-feedback-composite-service"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rules {
|
||||||
|
type = "CLOUD_APPLICATION_NAMESPACE"
|
||||||
|
enabled = true
|
||||||
|
conditions {
|
||||||
|
key {
|
||||||
|
type = "STATIC"
|
||||||
|
attribute = "CLOUD_APPLICATION_NAMESPACE_NAME"
|
||||||
|
}
|
||||||
|
string {
|
||||||
|
case_sensitive = true
|
||||||
|
# negate = false
|
||||||
|
operator = "CONTAINS"
|
||||||
|
value = "charging-station-feedback-composite-service"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rules {
|
||||||
|
type = "HOST"
|
||||||
|
enabled = true
|
||||||
|
conditions {
|
||||||
|
key {
|
||||||
|
type = "STATIC"
|
||||||
|
attribute = "HOST_TAGS"
|
||||||
|
}
|
||||||
|
tag {
|
||||||
|
# negate = false
|
||||||
|
operator = "EQUALS"
|
||||||
|
value {
|
||||||
|
context = "CONTEXTLESS"
|
||||||
|
key = "Component"
|
||||||
|
value = "charging-station-feedback-composite-service"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rules {
|
||||||
|
type = "PROCESS_GROUP"
|
||||||
|
enabled = true
|
||||||
|
propagation_types = [ "PROCESS_GROUP_TO_HOST" ]
|
||||||
|
conditions {
|
||||||
|
key {
|
||||||
|
type = "STATIC"
|
||||||
|
attribute = "PROCESS_GROUP_TAGS"
|
||||||
|
}
|
||||||
|
tag {
|
||||||
|
# negate = false
|
||||||
|
operator = "EQUALS"
|
||||||
|
value {
|
||||||
|
context = "CONTEXTLESS"
|
||||||
|
key = "Component"
|
||||||
|
value = "charging-station-feedback-composite-service"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rules {
|
||||||
|
type = "SERVICE"
|
||||||
|
enabled = true
|
||||||
|
propagation_types = [ "SERVICE_TO_HOST_LIKE", "SERVICE_TO_PROCESS_GROUP_LIKE" ]
|
||||||
|
conditions {
|
||||||
|
key {
|
||||||
|
type = "STATIC"
|
||||||
|
attribute = "SERVICE_TAGS"
|
||||||
|
}
|
||||||
|
tag {
|
||||||
|
# negate = false
|
||||||
|
operator = "EQUALS"
|
||||||
|
value {
|
||||||
|
context = "CONTEXTLESS"
|
||||||
|
key = "Component"
|
||||||
|
value = "charging-station-feedback-composite-service"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue