AWS Elastic Beanstalk
Overview
Real-life Use Cases
Terraform Example
resource "aws_elastic_beanstalk_environment" "app_env" {
name = "my-app-env"
application = aws_elastic_beanstalk_application.app.name
solution_stack_name = "64bit Amazon Linux 2 v3.3.6 running Python 3.8"
}
resource "aws_elastic_beanstalk_application" "app" {
name = "my-app"
}AWS CLI Example
Best Practices
Common Pitfalls
Last updated