UNPKG

@underw8/serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

25 lines (22 loc) 650 B
'use strict'; module.exports = { 'region': { usage: 'Region of the service', shortcut: 'r', }, 'aws-profile': { usage: 'AWS profile to use with the command', }, 'app': { usage: 'Dashboard app' }, 'org': { usage: 'Dashboard org' }, 'use-local-credentials': { usage: 'Rely on locally resolved AWS credentials instead of loading them from ' + 'Serverless Framework Providers. This applies only to services signed into the Dashboard.', type: 'boolean', }, ...require('./service'), }; for (const optionSchema of Object.values(module.exports)) { if (!optionSchema.type) optionSchema.type = 'string'; }