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

net.nemerosa.ontrack.extension.vault.VaultConfigProperties.kt Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.extension.vault

import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.stereotype.Component

@Component
@ConfigurationProperties(prefix = "ontrack.config.vault")
class VaultConfigProperties {
    /**
     * URI to the Vault end point
     */
    var uri = "http://localhost:8200"
    /**
     * Token authentication
     */
    var token = "test"
    /**
     * Key prefix
     */
    var prefix = "ontrack/keys"

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy