Description
Need HELP
I want to use a shared load balancer for this Beanstalk application.
After configuring it with below settings, still, beanstalk env is launching its dedicated load balancer.
For more info, I have attached my terraform code here.
terraform-aws-elasticbeanstalk.zip
Below are the settings I have configured to use a shared load balancer.
setting {
namespace = "aws:elasticbeanstalk:environment"
name = "EnvironmentType"
value = "LoadBalanced" # This setting indicates that the environment is load balanced
}
setting {
namespace = "aws:elasticbeanstalk:environment"
name = "LoadBalancerType"
value = "application"
}
setting {
namespace = "aws:elbv2:loadbalancer"
name = "SharedLoadBalancer"
value = "ARN-OF-SHARED-ALB" // Replace this with your shared load balancer ARN
}
Expected Behavior
It should use a shared load balancer that I already created.
Use Case
Need HELP
Describe Ideal Solution
Need HELP****
Alternatives Considered
No response
Additional Context
No response