Skip to content

dump configuration from created beanstalk env

0

When i am creating AWS beanstalk environment, is possible to dump whole configuration of the environment to create a script which will be able to create this env from scratch?

asked 2 years ago128 views

1 Answer
2

You can run these commands to describe configuration-options and configuration-settings. These options and settings can be used to spin up the same environment repeatably.

aws elasticbeanstalk describe-configuration-settings --application-name <APP_NAME> --environment-name <ENV_NAME>
aws elasticbeanstalk describe-configuration-options --application-name <APP_NAME> --environment-name <ENV_NAME>

Hope this helps.

AWS
SUPPORT ENGINEER

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.