Trying to rotate client secrets for our integration without baking them into the tfstate file. The vider docs mention a secret attribute but it still shows up as plaintext in the state after a plan. Is there a way to mark it as sensitive or use a dynamic block that references Vault? Currently getting a validation error when trying to use a variable with sensitive=true. Code snippet below:
resource "genesyscloud_oauth_client" "main" {
name = "api-client"
secret = var.oauth_secret
}