cloudbuil.yaml does not unmarshall when using base64-encoded value on build trigger
问题 On my cloudbuild.yaml definition, I used to have a secrets section to get environment values from Google KMS. The secretEnv fields had keys mapping to 'encrypted + base64-encoded' values: ... secrets: - kmsKeyName: <API_PATH> secretEnv: <KEY>: <ENCRYPTED+BASE64> I've tried to put this value on a substitution instead, which is replaced when a build trigger is used: ... secrets: - kmsKeyName: <API_PATH> secretEnv: <KEY>: ${_VALUE} With that I intend to keep the file generic. However, the build