Terraform import Genesys Cloud user: Missing identity_provider error

Trying to bring an existing Genesys Cloud user into Terraform state. Running terraform import genesyscloud_user.my_user <userId> from the CLI. The import command succeeds, but the subsequent terraform plan fails with a diff on the identity_provider_id field. The user was created manually in the UI, so it’s linked to the default provider.

Here’s the resource block:

resource "genesyscloud_user" "my_user" {
 name = "Test User"
 email = "test@example.com"
 division_id = genesyscloud_routing_queue.main.division_id
 identity_provider_id = "default" // Tried null too, same issue
}

The error says identity_provider_id has a value in the remote object but is not set in the configuration. I’ve tried setting it to null, an empty string, or omitting it entirely. The API response for the user shows the provider ID, but the Terraform provider seems to choke on it during the import reconciliation phase. Is there a specific way to handle users imported from the default provider? Or do I need to fetch the actual UUID of the default provider first and hardcode it? The docs are sparse on this edge case.