InlineSecretArgs

data class InlineSecretArgs(val envMap: Output<Map<String, String>>? = null, val kmsKeyName: Output<String>? = null) : ConvertibleToJava<InlineSecretArgs>

Pairs a set of secret environment variables mapped to encrypted values with the Cloud KMS key to use to decrypt the value.

Constructors

Link copied to clipboard
constructor(envMap: Output<Map<String, String>>? = null, kmsKeyName: Output<String>? = null)

Properties

Link copied to clipboard
val envMap: Output<Map<String, String>>? = null

Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.

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

Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/ ////

Functions

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