Defining skills in Genesys Cloud queue with Terraform CX as Code provider

Is there a specific syntax to attach skills to a queue using the CX as Code Terraform provider?

I’m trying to define a queue with associated skills in my main.tf file. The documentation is a bit sparse on this.

Here is what I have so far:

resource “genapi_queue” “support_queue” {
name = “Support Queue”
description = “General support”
// How do I add skills here?
}

The apply fails with a validation error if I try to use a skills block. I need to know the correct attribute name and structure.