如何使用 Cloud Formation 模板在 AWS Elastic Beanstalk 中包含粘性会话

如何使用 Cloud Formation 模板在 AWS Elastic Beanstalk 中包含粘性会话

当我在 Elastic Beanstalk 中搜索粘性时,我没有找到如何使用 AWS Cloud Formation 将其包含在内。有人能帮我做这件事吗?

提前致谢。

答案1

无法在 Cloudformation 中配置 ALB 设置,但可以使用 Elastic Beanstalk命名空间配置负载均衡器设置。

.ebextensions/alb-默认进程.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'

相关内容