Skip to content
New issue

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

Ignore kafka.user.id in connector config #118

Open
Brianbrifri opened this issue Nov 11, 2021 · 0 comments
Open

Ignore kafka.user.id in connector config #118

Brianbrifri opened this issue Nov 11, 2021 · 0 comments

Comments

@Brianbrifri
Copy link

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:

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",
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant