FunctionServiceConfigSecretEnvironmentVariable

data class FunctionServiceConfigSecretEnvironmentVariable(val key: String, val projectId: String, val secret: String, val version: String)

Constructors

constructor(key: String, projectId: String, secret: String, version: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val key: String

Name of the environment variable.

Link copied to clipboard

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

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

Link copied to clipboard

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.