All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.vault.runtime.config.VaultAppRoleAuthenticationConfig Maven / Gradle / Ivy

There is a newer version: 3.0.0.Beta1
Show newest version
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 VaultAppRoleAuthenticationConfig {

    /**
     * Role Id for AppRole auth method. This property is required when selecting the app-role authentication type.
     */
    @ConfigItem
    public Optional roleId;

    /**
     * Secret Id for AppRole auth method. This property is required when selecting the app-role authentication type.
     */
    @ConfigItem
    public Optional secretId;

    /**
     * Wrapping token containing a Secret Id, obtained from:
     * 

* vault write -wrap-ttl=60s -f auth/approle/role/myapp/secret-id *

* secret-id and secret-id-wrapping-token are exclusive */ @ConfigItem public Optional secretIdWrappingToken; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy