booster
booster copied to clipboard
Create a command to display the deployment outputs for the current application
Feature Request
Description
Deployment outputs (baseURL, graphQL endpoint, etc.) are shown once the application is deployed to your cloud provider of choice, but once you close the terminal window, the only way to see these outputs is by rerunning the deployment.
Possible Solution
Issue https://github.com/boostercloud/booster/issues/1102 proposes storing the deployment's outputs. Taking advantage of this, we can create a CLI command that shows this information. For instance:
$ boost deploy:status -e production
The application `name-of-your-app` is running on AWS with stack name `name-of-your-app-stack`. Visit the following URL to see your stack in the AWS CloudFormation console: https://xxxxxxxxxxx.aws.com
Outputs:
baseURL: https://asdf.amazonaws.com/production
...