@stacksjs/buddy 0.58.69 → 0.58.70
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/package.json +1 -1
- package/src/commands/cloud.ts +3 -1
package/package.json
CHANGED
package/src/commands/cloud.ts
CHANGED
|
@@ -102,6 +102,7 @@ export function cloud(buddy: CLI) {
|
|
|
102
102
|
.alias('cloud:rm')
|
|
103
103
|
.alias('undeploy')
|
|
104
104
|
.option('--jump-box', 'Remove the jump-box', { default: false })
|
|
105
|
+
// .option('--realtime-cdn-logs', 'Remove the CDN Realtime Log Stream', { default: false }) // TODO: implement this
|
|
105
106
|
.option('-p, --project', descriptions.project, { default: false })
|
|
106
107
|
.option('--verbose', descriptions.verbose, { default: false })
|
|
107
108
|
.action(async (options: CloudCliOptions) => {
|
|
@@ -185,7 +186,8 @@ export function cloud(buddy: CLI) {
|
|
|
185
186
|
|
|
186
187
|
buddy
|
|
187
188
|
.command('cloud:optimize-cost', descriptions.optimizeCost)
|
|
188
|
-
.option('--jump-box', 'Remove the jump-box', { default: true })
|
|
189
|
+
.option('--jump-box', 'Remove the jump-box', { default: true }) // removes the ec2 instance
|
|
190
|
+
// .option('--realtime-cdn-logs', 'Remove the CDN Realtime Log Stream', { default: true }) // TODO: implement this - removes the Kinesis Data Stream
|
|
189
191
|
.option('-p, --project', descriptions.project, { default: false })
|
|
190
192
|
.option('--verbose', descriptions.verbose, { default: false })
|
|
191
193
|
.action(async (options: CloudCliOptions) => {
|