Service Template Volume Secret Args
data class ServiceTemplateVolumeSecretArgs(val defaultMode: Output<Int>? = null, val items: Output<List<ServiceTemplateVolumeSecretItemArgs>>? = null, val secret: Output<String>) : ConvertibleToJava<ServiceTemplateVolumeSecretArgs>
Constructors
Link copied to clipboard
constructor(defaultMode: Output<Int>? = null, items: Output<List<ServiceTemplateVolumeSecretItemArgs>>? = null, secret: Output<String>)
Properties
Link copied to clipboard
Integer representation of mode bits to use on created files by default. Must be a value between 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this setting.
Link copied to clipboard
If unspecified, the volume will expose a file whose name is the secret, relative to VolumeMount.mount_path. If specified, the key will be used as the version to fetch from Cloud Secret Manager and the path will be the name of the file exposed in the volume. When items are defined, they must specify a path and a version. Structure is documented below.