Elastic Beanstalk Change ELB Type

前端 未结 3 979
难免孤独
难免孤独 2021-02-02 09:51

Does anyone know if it\'s possible to change an existing AWS Elastic Beanstalk environment to an Application Load Balancer (instead of a classic one).

As far as I know

3条回答
  •  感情败类
    2021-02-02 10:26

    The easiest way I've found to change an existing application to use the application load balancer is using both the Console and CLI:

    1. In the console, save the application configuration of the original env. Note this name down. We'll use it as .
    2. Under the Application versions note the latest Version Label. We'll use it as .
    3. From the CLI run eb create --elb-type application --cfg --version
    4. If you had HTTPs configured in the old application, in the newly created application reconfigure it in the Console under Load Balancer-->Listeners with the proper certificate.

提交回复
热议问题