How do you handle genesyscloud_oauth_client secrets in Terraform without them leaking into the .tfstate? The client_secret attribute is plain text in the state by default. I’ve tried sensitive = true on the resource, but it only masks CLI output, not the actual JSON state file. Is there a pattern to rotate these without persisting the secret in state, or are we just accepting the risk? Here’s the block:
resource "genesyscloud_oauth_client" "main" {
name = "api-client"
client_secret = "super-secret"
}