kes
Version:
Making deployment to AWS using CloudFormation easier and fun
17 lines (13 loc) • 362 B
JavaScript
;
const Kes = require('../../index').Kes;
class BetterKes extends Kes {
opsStack(ops) {
return super.opsStack(ops)
.then(() => this.describeCF())
.then((r) => {
const outputs = r.Stacks[0].Outputs;
outputs.forEach(o => console.log(`${o.OutputKey}: ${o.OutputValue}`));
});
}
}
module.exports = BetterKes;