Hey,
Iām trying to create the following:
resource āpagerduty_event_orchestration_routerā ārouterā {
event_orchestration = pagerduty_event_orchestration.devops.id
set {
id = āstartā
rule {
label = āEvents relating to Aceā
condition {
expression = āevent.summary matches part āace\bāā
}
actions {
route_to = pagerduty_service.ace.id
}
}
}
catch_all {
actions {
route_to = āunroutedā
}
}
}
And getting the following error code when running terraform apply:
Error: PUT API call to https://api.pagerduty.com/event_orchestrations/6fd1056d-59f8-4e04-9d90-5d92b1cf301d/router failed 400 Bad Request. Code: 0, Errors: map[sets:[map[rules:[map[conditions:[map[expression:[unexpected word 'āaceā on line 1 offset 27 unexpected symbols āā on line 1 offset 31, unexpected word āāā on line 1 offset 33]]]]
As you can see, iām using \ but still.
Thanks