Trying to define a queue with specific skills using the genesyscloud_routing_queue resource in Terraform. The plan succeeds, but apply fails with a 400 error saying the skills array is invalid even though the JSON structure looks correct.
Here is the snippet causing the issue:
resource "genesyscloud_routing_queue" "test_q" {
name = "Test Queue"
skills {
name = "Support"
id = "abc-123"
}
}
What’s the correct schema for the skills block?