cloud-function-nodejs-samples
cloud-function-nodejs-samples copied to clipboard
faas-sdk init - starts with broken code
In the index.js
module.exports = function(event, context) {
const rv = context.getSecretValueJSON('my-new-sec', 'rv.json');
return rv.Info.Success;
};
has to be changed to this
module.exports = async function(event, context) {
const rv = await context.getSecretValueJSON('my-new-sec', 'rv.json');
return rv.Info.Success;
};