Trying to define a queue with specific skills in the Genesys Cloud Terraform provider. The plan fails during the apply phase. It’s not liking how I’m nesting the skills inside the queue resource. Here’s the snippet:
resource "gen_cloud_queue" "main" {
name = "Support"
skills = ["english", "billing"]
}
Getting a validation error on the skills attribute. The docs are sparse on this. What’s the correct block structure for assigning skills to a queue via CX as Code?