Genesys Cloud Queue Skills in Terraform

What’s the right way to attach skills to a queue using the CX as Code provider? I’m using the genesyscloud_routing_queue resource but the skills attribute isn’t sticking. The plan applies without errors, yet the queue shows no skills in the UI. Here’s the config:

resource “genesyscloud_routing_queue” “main” {
name = “Test”
skills = [“support”]
}

Any ideas?