Change platform to Elastic Beanstalk from PHP to Node.js

I am trying to change the platform on an existing instance of Elastic Beanstalk from PHP 7 to Node.js. However, through the AWS control panel, I can only change / update the version of PHP.

Is it possible to do this in the control panel or on the command line?

+4
source share
1 answer

I think you can use this solution :

aws elasticbeanstalk list-available-solution-stacks

aws elasticbeanstalk update-environment --solution-stack-name "64bit Amazon Linux 2017.09 v4.4.4 running Node.js" --environment-name "example-env" --region "eu-west-1"
+2
source

Source: https://habr.com/ru/post/1679197/


All Articles