io.quarkus.vault.runtime.config.VaultEnterpriseConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault Show documentation
Show all versions of quarkus-vault Show documentation
Store your credentials securely in HashiCorp Vault
package io.quarkus.vault.runtime.config;
import java.util.Optional;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;
@ConfigGroup
public class VaultEnterpriseConfig {
/**
* Vault Enterprise namespace
*
* If set, this will add a `X-Vault-Namespace` header to all requests sent to the Vault server.
*
* See https://www.vaultproject.io/docs/enterprise/namespaces
*
* @asciidoclet
*/
@ConfigItem
public Optional namespace;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy