AWS reinitialize Elastic Beanstalk environment
To initialize a Amazon Webservice Elastic Beanstalk environment you generally use the command:
1 |
$> eb init |
But sometimes you need to reinitialize the environment, because you made a mistake or want to change the programming language or AWS region of the connected environment. In these cases you can reinitialize Elastic Beanstalk Environment by the -i parameter:
1 |
$> eb init -i |
The -i […]