Environment Args
data class EnvironmentArgs(val encryptedVariables: Output<KMSEnvMapArgs>? = null, val secretVariables: Output<Map<String, String>>? = null, val variables: Output<Map<String, String>>? = null) : ConvertibleToJava<EnvironmentArgs>
An Environment describes a collection of environment variables to set when executing Tasks.
Properties
Link copied to clipboard
An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
Link copied to clipboard
A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.