env

@JvmName(name = "cymfjuspikoaswcs")
suspend fun env(value: Output<List<EnvVarArgs>>)
@JvmName(name = "feuurkcdgtlhyigg")
suspend fun env(value: List<EnvVarArgs>?)

Parameters

value

List of environment variables to set in the container. EnvVar with duplicate names are generally allowed; if referencing a secret, the name must be unique for the container. For non-secret EnvVar names, the Container will only get the last-declared one.


@JvmName(name = "cynaieqxmqlqbcfm")
suspend fun env(vararg values: Output<EnvVarArgs>)


@JvmName(name = "nssynpgpfpkyvtjl")
suspend fun env(values: List<Output<EnvVarArgs>>)
@JvmName(name = "aofijunmpubjrewd")
suspend fun env(vararg values: EnvVarArgs)

Parameters

values

List of environment variables to set in the container. EnvVar with duplicate names are generally allowed; if referencing a secret, the name must be unique for the container. For non-secret EnvVar names, the Container will only get the last-declared one.


@JvmName(name = "jjohqkvtsmvgmbny")
suspend fun env(argument: List<suspend EnvVarArgsBuilder.() -> Unit>)
@JvmName(name = "rqgvcsgwmlqoihws")
suspend fun env(vararg argument: suspend EnvVarArgsBuilder.() -> Unit)
@JvmName(name = "fltssnuqivsvwepu")
suspend fun env(argument: suspend EnvVarArgsBuilder.() -> Unit)

Parameters

argument

List of environment variables to set in the container. EnvVar with duplicate names are generally allowed; if referencing a secret, the name must be unique for the container. For non-secret EnvVar names, the Container will only get the last-declared one.