Open wildnothing opened 2 years ago
The provider tag is whatever you want to use. You could use it lowercase.
ENV CONNECT_CONFIG_PROVIDERS "keyvault"
The provider tag is whatever you want to use. You could use it lowercase.
ENV CONNECT_CONFIG_PROVIDERS "keyvault"
We tried that but unfortunately we also had change every class which had "KeyVault" in its name to "Keyvault" instead. Only after this did we get it working.
Confluent Docker image
confluentinc/cp-kafka-connect:7.1.1
requires worker properties to be set via the following mechanismThis adds the following two properties to
/etc/kafka-connect/kafka-connect.properties
as followsHowever, due to the nature of Connect's
AbstractConfig.java
, the values of these properties are never found because they require a key ofconfig.providers.keyVault.class
whereas Docker serialises the key asconfig.providers.
keyvault
.class
instead.