Sanitizing OAuth secrets in Genesys Cloud Terraform state

Running the Genesys Cloud Terraform provider, I noticed the genesys_cloud_oauth_client resource stores the secret in plain text in the state file. This is a security risk for our New Relic dashboards.

resource "genesys_cloud_oauth_client" "this" {
 name = "test"
 secret = "abc123"
}

I tried using sensitive = true but it didn’t help with the state file storage. How do I mask this?