Trying to attach skills to an existing queue using the genesyscloud_routing_queue resource. I’ve got the skills block in there, but every time I run terraform apply, it tries to destroy and recreate the queue instead of just updating the skills. Is there a specific way to structure the skills array or use lifecycle blocks to prevent this churn? Here’s the relevant snippet:
resource "genesyscloud_routing_queue" "my_queue" {
name = "Support Queue"
skills = ["english", "tech"]
}