Terraform CX as Code queue skills mapping error

I’m trying to define a Genesys Cloud queue with specific skills using the CX as Code Terraform provider. I’ve got the queue resource set up, but the skills block seems to be throwing a validation error during apply. Here’s the snippet:

resource “genesyscloud_routing_queue” “support_queue” {
name = “Support”
skills {
id = “skill-uuid-here”
}
}

Getting a 400 Bad Request saying the skill ID format is invalid. Is there a specific way to reference the skill UUID in this provider?