Terraform queue skills block refusing to apply

Hey folks,

Trying to define a Genesys Cloud queue with specific skills using the CX as Code Terraform provider. The skills block inside the genesyscloud_routing_queue resource keeps throwing a validation error on apply.

Here’s the snippet:

resource "genesyscloud_routing_queue" "main" {
 name = "Support"
 skills {
 skill_id = "123-456"
 priority = 1
 }
}

Error says skills is not supported.

  • Provider version 1.42.0
  • TF 1.6.0
  • Checked docs, looks right

Am I missing a nested block?