@friggframework/devtools 2.0.0--canary.414.891364b.0 → 2.0.0--canary.414.db76eeb.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/frigg-cli/deploy-command/index.js +2 -1
- package/infrastructure/AWS-IAM-CREDENTIAL-NEEDS.md +442 -411
- package/infrastructure/GENERATE-IAM-DOCS.md +91 -66
- package/infrastructure/frigg-deployment-iam-stack.yaml +22 -0
- package/infrastructure/iam-generator.js +214 -131
- package/infrastructure/serverless-template.js +418 -251
- package/package.json +6 -6
|
@@ -116,7 +116,7 @@ async function deployCommand(options) {
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
// AWS discovery is now handled directly in serverless-template.js
|
|
119
|
-
console.log('
|
|
119
|
+
console.log('🤘🏼 Deploying serverless application...');
|
|
120
120
|
const backendPath = path.resolve(process.cwd());
|
|
121
121
|
const infrastructurePath = 'infrastructure.js';
|
|
122
122
|
const command = 'serverless';
|
|
@@ -126,6 +126,7 @@ async function deployCommand(options) {
|
|
|
126
126
|
infrastructurePath,
|
|
127
127
|
'--stage',
|
|
128
128
|
options.stage,
|
|
129
|
+
options.stage,
|
|
129
130
|
];
|
|
130
131
|
|
|
131
132
|
const childProcess = spawn(command, serverlessArgs, {
|