io.quarkiverse.googlecloudservices.secretmanager.runtime.config.SecretManagerConfigBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-google-cloud-secret-manager Show documentation
Show all versions of quarkus-google-cloud-secret-manager Show documentation
Use Google Cloud Secret Manager service
package io.quarkiverse.googlecloudservices.secretmanager.runtime.config;
import io.quarkus.runtime.configuration.ConfigBuilder;
import io.smallrye.config.SmallRyeConfigBuilder;
public class SecretManagerConfigBuilder implements ConfigBuilder {
@Override
public SmallRyeConfigBuilder configBuilder(final SmallRyeConfigBuilder builder) {
return builder.withSources(new SecretManagerConfigSourceFactory());
}
}