main.wisp.deployment.EnvironmentVariableDeploymentLocation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisp-deployment Show documentation
Show all versions of wisp-deployment Show documentation
a module containing deployment helpers
package wisp.deployment
/**
* Provides a deployment location id from the environment variable value.
*/
class EnvironmentVariableDeploymentLocation @JvmOverloads constructor(
private val environmentVariableName: String,
private val environmentVariableLoader: EnvironmentVariableLoader = EnvironmentVariableLoader.real
) : DeploymentLocation {
override val id: String
get() = environmentVariableLoader.getEnvironmentVariable(environmentVariableName)
}