We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm getting this preview when I've changed nothing in my connector config.
Terraform will perform the following actions: # confluentcloud_connector.confluentcloud_connector will be updated in-place ~ resource "confluentcloud_connector" "confluentcloud_connector" { ~ config = { ~ "connection.password" = "****************" -> "[MASKED]" - "kafka.user.id" = "999999" -> null - "schema.registry.url" = "https://url" -> null # (25 unchanged elements hidden) } id = "my-connector" name = "my-connector" # (2 unchanged attributes hidden) } Plan: 0 to add, 1 to change, 0 to destroy.
I saw a recent change to ignore the schema.registry.url. I think the kafka.user.id needs to be ignored as well:
schema.registry.url
kafka.user.id
func ignoreConnectorConfigs() []string { return []string{ "config.kafka.endpoint", "config.kafka.region", "config.kafka.dedicated", "config.kafka.user.id", "config.cloud.provider", "config.cloud.environment", "config.valid.kafka.api.key", "config.schema.registry.url", } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm getting this preview when I've changed nothing in my connector config.
I saw a recent change to ignore the
schema.registry.url
. I think thekafka.user.id
needs to be ignored as well:The text was updated successfully, but these errors were encountered: