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

io.github.devsecops.engine.domain.resolver.model.VaultVariables Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
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