SecretEnvVarArgs

data class SecretEnvVarArgs(val key: Output<String>? = null, val project: Output<String>? = null, val secret: Output<String>? = null, val version: Output<String>? = null) : ConvertibleToJava<SecretEnvVarArgs>

Configuration for a secret environment variable. It has the information necessary to fetch the secret value from secret manager and expose it as an environment variable.

Constructors

Link copied to clipboard
fun SecretEnvVarArgs(key: Output<String>? = null, project: Output<String>? = null, secret: Output<String>? = null, version: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SecretEnvVarArgs

Properties

Link copied to clipboard
val key: Output<String>? = null

Name of the environment variable.

Link copied to clipboard
val project: Output<String>? = null

Project identifier (preferrably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function's project assuming that the secret exists in the same project as of the function.

Link copied to clipboard
val secret: Output<String>? = null

Name of the secret in secret manager (not the full resource name).

Link copied to clipboard
val version: Output<String>? = null

Version of the secret (version number or the string 'latest'). It is recommended to use a numeric version for secret environment variables as any updates to the secret value is not reflected until new instances start.