Elastic Beanstalk Change ELB Type

前端 未结 3 976
难免孤独
难免孤独 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:30

    Hello As Per AWS Documentation:

    The Elastic Beanstalk Environment Management Console only supports creating and managing an Elastic Beanstalk environment with a Classic Load Balancer. For other options, see Application Load Balancer and Network Load Balancer.

    Also

    Note You can only set the load balancer type during environment creation. (Refer AWS Documetnation)

    So When you deploy application to Elastic Beanstalk via AWS CLI:

    Try

    eb create test-env --elb-type network
    

    or

    eb create test-env --elb-type application

提交回复
热议问题