0

As I searched for the stickiness in Elastic Beanstalk I didn't find the way how to include it using AWS Cloud Formation. Can anyone help me to do that thing.

Thanks in advance.

Gayathri K
  • 139
  • 5

1 Answers1

0

There is no way to configure ALB settings in Cloudformation, but you can use Elastic Beanstalk namespaces to configure load balancer settings.

.ebextensions/alb-default-process.config

option_settings:
  aws:elasticbeanstalk:environment:process:default:
    DeregistrationDelay: '20'
    HealthCheckInterval: '15'
    HealthCheckPath: /
    HealthCheckTimeout: '5'
    HealthyThresholdCount: '3'
    UnhealthyThresholdCount: '5'
    Port: '80'
    Protocol: HTTP
    StickinessEnabled: 'true'
    StickinessLBCookieDuration: '43200'
Vikyol
  • 161
  • 4