Running terraform plan shows a constant diff on genesyscloud_routing_queue for wrap_up_code_names, even though the config hasn’t changed. The state file seems locked or out of sync with the API response. I’ve tried terraform refresh and manually editing the state file, but the drift persists. Here’s the resource block causing issues:
resource "genesyscloud_routing_queue" "support_queue" {
name = "Support"
wrap_up_code_names = ["No Wrap Up"]
}
The plan output shows:
~ wrap_up_code_names = [
- "No Wrap Up",
]
Is this a known issue with the provider or a state locking problem?