I’m trying to define a queue with specific skills using the CX as Code provider. I have the basic resource block set up, but I’m stuck on the syntax for attaching skills to the queue. I’ve tried nesting a skills block inside routing_rules, but Terraform throws a validation error saying the argument is not expected. I’ve checked the docs but the examples are sparse. Here is what I have so far:
resource "genesyscloud_routing_queue" "test_queue" {
name = "Test Queue"
# how do I add skills here?
}