io.github.devsecops.engine.domain.resolver.model.VaultVariables Maven / Gradle / Ivy
package io.github.devsecops.engine.domain.resolver.model;
import io.github.devsecops.engine.core.model.PropertyVariables;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
public enum VaultVariables implements PropertyVariables {
VAULT_URL("vault.url"),
VAULT_APP_PATH("vault.appPath"),
VAULT_ROLE_ID("VAULT_ROLE_ID"),
VAULT_SECRET_ID("VAULT_SECRET_ID");
@Getter
private String name;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy