View Source GoogleApi.CloudFunctions.V1.Model.SecretEnvVar (google_api_cloud_functions v0.37.0)

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.

Attributes

  • key (type: String.t, default: nil) - Name of the environment variable.
  • projectId (type: String.t, default: nil) - 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.
  • secret (type: String.t, default: nil) - Name of the secret in secret manager (not the full resource name).
  • version (type: String.t, default: nil) - 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.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.CloudFunctions.V1.Model.SecretEnvVar{
  key: String.t() | nil,
  projectId: String.t() | nil,
  secret: String.t() | nil,
  version: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.