SlideShare a Scribd company logo
1 of 25
AWS Elastic Beanstalk
Deploy, Scale and Modernize Web Applications
1. AWS Elastic Beanstalk 101
2. Elastic Beanstalk using CDK (Github source code)
3. Gateway to Modernization: Shared ALB to ECS/EKS
🎯 BUILDING MODERN APPLICATIONS
q AWS Elastic Beanstalk 101
q Elastic Beanstalk using CDK
vInfrastructure Provisioning and Configuration
vDeployment, Load Balancing, Auto Scaling
vAutomate Deployment CI/CD
q Gateway to Modernization: Shared Load Balancing
Agenda
Challenge - Migrating a Web-App to the Cloud
🎯 How do I move my web-app
to the cloud
++ 🦾 design for high availability
++ ⚡ scale dynamically
++ 🎲 deploy application versions safely
++ ⚽ keep the OS patched
++ 😎 modernize it over time?
Web Back-ends
Web Apps & Websites
API Services
Deploy and Scale Monolith
AWS Elastic
Beanstalk
Availability Zone 1 Availability Zone 2
Auto Scaling
Group
Amazon RDS
(Master)
Instances
Amazon RDS
(Slave)
Elastic Load
Balancing (ELB)
Elastic Beanstalk
A fully Managed Service for
hosting Web Applications
Low management
overhead
Easy to get
started
Gateway to
modernization
Multiple ways to upload a source
bundle:
• EB console
• EB CLI
• AWS Extensions for .NET CLI
• AWS Toolkit for Visual Studio
• Windows Web App Migration
Assistant (.NET apps)
• CI/CD integration
Easy to get started
Upload
Easy to get
started
1-click deployment
automatically provisions:
• Auto scaling
• Load balancing
• Network configuration
• App deployment
Deploy
Configure
Select from 11 runtime
platforms, including:
• Python
• Java
• Node.JS
• .NET
• Docker
• PHP
• Tomcat
Availability Zone 1
Elastic Beanstalk Architecture
VPC
AWS Cloud
Availability Zone 2
Auto Scaling Group
Elastic Beanstalk
environment
Web server
instances
Web server
instances
myapp.com
Application Load Balancer
Amazon Route 53
Easy to get
started
• Highly Available
• Scalable
• Provisioned
Automatically
• Safely deploys app updates while
monitoring app health
• Choose from all-at-once, rolling,
traffic splitting or blue/green
deployments
• Durably stores each app version to
S3 for easy rollback
Low management
overhead
Low Management Overhead
Automated App
Deployments
• Keeps the operating system
and runtime updated with
latest patches and updates
• Monthly releases of new
platform updates
• Configurable update schedule
Automated
Platform Updates
• Summarizes app health
based on multiple inputs
• Monitors HTTP error rates
& request/response latency
• Monitors resource usage
(CPU, network, memory)
• Logs health events
• Sends notifications based
on user-defined thresholds
App Health
Monitoring
Elastic Beanstalk
Auto Scaling group
Application Load Balancer
V2 V2 V2
V2
Auto Scaling group
90% of traffic
10% of traffic
100% of traffic
100% of traffic
Safely rollout application updates with
Traffic Splitting Deployment
Low management
overhead
Stay appraised of application health
Low management
overhead
• Dashboard with detailed
application metrics
• Log events with CloudWatch
Logs streaming
• Easily enable AWS X-Ray for
analyzing and debugging
• Automatically deploy to Elastic
Beanstalk with each Code Commit.
• Create a CI/CD pipeline using the
CodePipeline/Elastic Beanstalk
integration.
• Integrate Elastic Beanstalk into an
existing CI/CD pipeline
Gateway to Modernization
Automate deployments
with CI/CD
Gateway to
modernization
• Containerize an app
automatically
• Gradually adopt a service-
oriented architecture
Modernize with
containerization
• Run .NET Core apps in EB
Linux environments and save
30% or more vs. Windows
• Convert apps from .NET
Framework to .NET Core to
run on Elastic
Beanstalk/Linux
Replatform from
Windows to Linux
Shared Application Load Balancer capability
§ Share an ALB among EB
environments
§ Reduce ALB costs while
modernizing your app
§ Use Host-based and Path-
based rules to serve traffic to
multiple environments or
services hosted on Beanstalk
or ECS
Gateway to
modernization
Adopt a Service-Oriented Architecture
Gateway to
modernization
Migrate app as-is
VM
Web app
Elastic Beanstalk/EC2
Web app
Elastic Beanstalk/EC2
Shared ALB
on-prem
ECS/EC2
ECS/Fargate
Modernize: Share an ALB to forward traffic
to your monolith and distributed service
ü Decoupled components can scale independently
ü Perform safe deployments with out app downtime
ü Cost savings from sharing an ALB across multiple environments
Adopt a Service-Oriented Architecture
Gateway to
modernization
Migrate app as-is
VM Elastic Beanstalk/EC2
on-prem
Modernize app components as
containerized microservices
running in Elastic Beanstalk, ECS,
or EKS
Monolithic App
Inventory
Service
Auth
Service
Order
Service
Monolithic App
Inventory
Service
Auth
Service
Order
Service
EKS/Fargate
Inventory Service
Elastic Beanstalk/EC2
Auth Service
inventory.local
auth.local
ü Unblocks teams from monolithic pipelines
ü Decoupled components can scale independently
AWS Elastic Beanstalk
$ eb init
Create your Elastic Beanstalk app
01
02
Create the resources and launch the
application
03
$ eb create
Deploy updates
$ eb deploy
What is AWS Elastic Beanstalk?
Automatically handles:
Ø Infrastructure provisioning and configuration
Ø Ongoing management of infrastructure
Ø Deployment
Ø Load balancing
Ø Auto scaling
Ø Health monitoring
Ø Automated Updates
Ø Analysis and debugging
Ø Logging
There is no additional charge for Elastic Beanstalk
Provision /
Configure
Deploy
Manage /
Monitor
Application code
HTTP server
Application server
Language interpreter
Operating system
Host
1. Application: “Container” that
encapsulates code, infra, etc.
2. Application version: Code that you
create and deploy
3. Platform: Language runtimes to run
the application.
Platforms containing the most
popular runtimes (Java, .NET, Go, …)
as well as Docker images, allowing
you to bring your own
4. Environment: Group of AWS
infrastructure elements to support
running the application
What does Elastic Beanstalk do?
managed
by
Elastic
Beanstalk
Application versions
q Every deployment is its own unique version
q All versions stored in Amazon S3
q Allows easy rollback to a previous version
without having to back out committed code
changes
q Allows you to promote versions across
different environments within an
application
AWS Elastic Beanstalk
Extending to CI/CD – AWS developer tools
Source Build Deploy
AWS
CodeCommit
AWS
CodeBuild
AWS CodePipeline
AWS CodeCommit
• Fully managed Git service
AWS CodeBuild
• Fully managed build service that
compiles source code, runs tests, and
produces software packages
AWS CodePipeline
• Continuous deployment service for
fast and reliable application updates
What you’ve created
Elastic Beanstalk/EC2
Shared ALB
Elastic Beanstalk/EC2
DogWeather
Amazon ECS/EC2
ECS/AWS Fargate
ü Decoupled components can scale independently
ü Promote distributed architectures
ü Cost savings from sharing an ALB across multiple environments
• Share an ALB among
Elastic Beanstalk
environments
• Reduce ALB costs while
modernizing your app
• Use host-based and
path-based rules to serve
traffic to multiple
environments or services
hosted on Elastic Beanstalk
or Amazon ECS
Shared Application Load Balancer capability
Platforms to host your Application
Amazon
EC2
App
Rehosting
Replatforming
Refactoring
AWS Elastic
Beanstalk
AWS
Lambda
AWS Elastic
Container Service
(AWS ECS)
AWS Elastic
Kubernetes Service
(AWS EKS)
q Perform lift-and-shift migration of Java, Windows .NET, Go workloads
into a managed platform with health monitoring, automated managed
updates
https://github.com/awslabs/windows-web-app-migration-assistant
q Modernize your application using multi-container Docker images on
Elastic Beanstalk
https://github.com/aws-samples/eb-docker-nginx-proxy
q Try running a Machine Learning model on Elastic Beanstalk
https://github.com/charlesmalafosse/aws-elasticbeanstalk-ml-server
Challenges
Replatforming your ASP.NET application
using App2Container: Under the hood
ASP.NET
application server
Upload the artifacts to
Amazon S3 bucket
Extract all necessary artifacts to
containerize the application
(Optional) Update database
connection strings
Analyze dependency and
IIS configuration
Select the IIS site
to be containerized
Run app2container inventory to discover all
IIS sites capable to be containerized Build and push
the container
image Amazon ECR
Amazon S3 bucket
AWS Cloud
App2Container workspace
Amazon EC2 instance
(Windows server with
Docker installed)
Amazon ECS
Register ECS
task
definition
Amazon EKS
Generate service /
deployment file
to be used on
Kubernetes
Thank you!
@nnthanh101
https://www.linkedin.com/in/nnthanh
v Facebook Group:
https://www.facebook.com/groups/modernapps/permalink/796401030955458/
v Source Code:
https://github.com/nnthanh101/modernapps/tree/main/elastic-beanstalk

More Related Content

What's hot

ENT303 Another Day, Another Billion Packets
ENT303 Another Day, Another Billion PacketsENT303 Another Day, Another Billion Packets
ENT303 Another Day, Another Billion PacketsAmazon Web Services
 
Continuous Delivery to Amazon ECS
Continuous Delivery to Amazon ECS Continuous Delivery to Amazon ECS
Continuous Delivery to Amazon ECS Amazon Web Services
 
Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...
Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...
Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...Amazon Web Services
 
AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...
AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...
AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...Amazon Web Services
 
AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...
AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...
AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...Amazon Web Services
 
AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...
AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...
AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...Amazon Web Services
 
NEW LAUNCH! Developing Serverless C# Applications
NEW LAUNCH! Developing Serverless C# ApplicationsNEW LAUNCH! Developing Serverless C# Applications
NEW LAUNCH! Developing Serverless C# ApplicationsAmazon Web Services
 
SRV407 Deep Dive on Amazon Aurora
SRV407 Deep Dive on Amazon AuroraSRV407 Deep Dive on Amazon Aurora
SRV407 Deep Dive on Amazon AuroraAmazon Web Services
 
AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)
AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)
AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)Amazon Web Services
 
Journey Towards Scaling Your Application to 10 million users
Journey Towards Scaling Your Application to 10 million usersJourney Towards Scaling Your Application to 10 million users
Journey Towards Scaling Your Application to 10 million usersAmazon Web Services
 
Scheduling Containers on Amazon ECS
Scheduling Containers on Amazon ECSScheduling Containers on Amazon ECS
Scheduling Containers on Amazon ECSAmazon Web Services
 
SRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless CloudSRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless CloudAmazon Web Services
 
(DVO313) Building Next-Generation Applications with Amazon ECS
(DVO313) Building Next-Generation Applications with Amazon ECS(DVO313) Building Next-Generation Applications with Amazon ECS
(DVO313) Building Next-Generation Applications with Amazon ECSAmazon Web Services
 
Build a Website on AWS for Your First 10 Million Users
Build a Website on AWS for Your First 10 Million UsersBuild a Website on AWS for Your First 10 Million Users
Build a Website on AWS for Your First 10 Million UsersAmazon Web Services
 
AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...
AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...
AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...Amazon Web Services
 
Scaling the Platform for Your Startup - Startup Talks June 2015
Scaling the Platform for Your Startup - Startup Talks June 2015Scaling the Platform for Your Startup - Startup Talks June 2015
Scaling the Platform for Your Startup - Startup Talks June 2015Amazon Web Services
 
AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)
AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)
AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)Amazon Web Services
 
Architetture Serverless: concentrarsi sull'idea, non sull'infrastruttura
Architetture Serverless: concentrarsi sull'idea, non sull'infrastrutturaArchitetture Serverless: concentrarsi sull'idea, non sull'infrastruttura
Architetture Serverless: concentrarsi sull'idea, non sull'infrastrutturaAmazon Web Services
 
AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)
AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)
AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)Amazon Web Services
 
Dev/Test Environment Provisioning and Management on AWS
Dev/Test Environment Provisioning and Management on AWSDev/Test Environment Provisioning and Management on AWS
Dev/Test Environment Provisioning and Management on AWSShiva Narayanaswamy
 

What's hot (20)

ENT303 Another Day, Another Billion Packets
ENT303 Another Day, Another Billion PacketsENT303 Another Day, Another Billion Packets
ENT303 Another Day, Another Billion Packets
 
Continuous Delivery to Amazon ECS
Continuous Delivery to Amazon ECS Continuous Delivery to Amazon ECS
Continuous Delivery to Amazon ECS
 
Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...
Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...
Real World Development: Peeling The Onion – Migrating A Monolithic Applicatio...
 
AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...
AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...
AWS re:Invent 2016: From Monolithic to Microservices: Evolving Architecture P...
 
AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...
AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...
AWS re:Invent 2016: Serverless Architectural Patterns and Best Practices (ARC...
 
AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...
AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...
AWS re:Invent 2016: 6 Million New Registrations in 30 Days: How the Chick-fil...
 
NEW LAUNCH! Developing Serverless C# Applications
NEW LAUNCH! Developing Serverless C# ApplicationsNEW LAUNCH! Developing Serverless C# Applications
NEW LAUNCH! Developing Serverless C# Applications
 
SRV407 Deep Dive on Amazon Aurora
SRV407 Deep Dive on Amazon AuroraSRV407 Deep Dive on Amazon Aurora
SRV407 Deep Dive on Amazon Aurora
 
AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)
AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)
AWS re:Invent 2016: NEW LAUNCH! Lambda Everywhere (IOT309)
 
Journey Towards Scaling Your Application to 10 million users
Journey Towards Scaling Your Application to 10 million usersJourney Towards Scaling Your Application to 10 million users
Journey Towards Scaling Your Application to 10 million users
 
Scheduling Containers on Amazon ECS
Scheduling Containers on Amazon ECSScheduling Containers on Amazon ECS
Scheduling Containers on Amazon ECS
 
SRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless CloudSRV203 Getting Started with AWS Lambda and the Serverless Cloud
SRV203 Getting Started with AWS Lambda and the Serverless Cloud
 
(DVO313) Building Next-Generation Applications with Amazon ECS
(DVO313) Building Next-Generation Applications with Amazon ECS(DVO313) Building Next-Generation Applications with Amazon ECS
(DVO313) Building Next-Generation Applications with Amazon ECS
 
Build a Website on AWS for Your First 10 Million Users
Build a Website on AWS for Your First 10 Million UsersBuild a Website on AWS for Your First 10 Million Users
Build a Website on AWS for Your First 10 Million Users
 
AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...
AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...
AWS re:Invent 2016: Building SaaS Offerings for Desktop Apps with Amazon AppS...
 
Scaling the Platform for Your Startup - Startup Talks June 2015
Scaling the Platform for Your Startup - Startup Talks June 2015Scaling the Platform for Your Startup - Startup Talks June 2015
Scaling the Platform for Your Startup - Startup Talks June 2015
 
AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)
AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)
AWS re:Invent 2016: Building Complex Serverless Applications (GPST404)
 
Architetture Serverless: concentrarsi sull'idea, non sull'infrastruttura
Architetture Serverless: concentrarsi sull'idea, non sull'infrastrutturaArchitetture Serverless: concentrarsi sull'idea, non sull'infrastruttura
Architetture Serverless: concentrarsi sull'idea, non sull'infrastruttura
 
AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)
AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)
AWS re:Invent 2016: Running Batch Jobs on Amazon ECS (CON310)
 
Dev/Test Environment Provisioning and Management on AWS
Dev/Test Environment Provisioning and Management on AWSDev/Test Environment Provisioning and Management on AWS
Dev/Test Environment Provisioning and Management on AWS
 

Similar to E301 Elastic Beanstalk PaaS

Continuous Integration and Deployment Best Practices on AWS
Continuous Integration and Deployment Best Practices on AWSContinuous Integration and Deployment Best Practices on AWS
Continuous Integration and Deployment Best Practices on AWSAmazon Web Services
 
Agile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic BeanstalkAgile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic BeanstalkAmazon Web Services
 
AWS January 2016 Webinar Series - Introduction to Deploying Applications on AWS
AWS January 2016 Webinar Series - Introduction to Deploying Applications on AWSAWS January 2016 Webinar Series - Introduction to Deploying Applications on AWS
AWS January 2016 Webinar Series - Introduction to Deploying Applications on AWSAmazon Web Services
 
Agile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic BeanstalkAgile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic BeanstalkAmazon Web Services
 
Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...
Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...
Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...Amazon Web Services
 
Using Azure DevOps to continuously build, test, and deploy containerized appl...
Using Azure DevOps to continuously build, test, and deploy containerized appl...Using Azure DevOps to continuously build, test, and deploy containerized appl...
Using Azure DevOps to continuously build, test, and deploy containerized appl...Adrian Todorov
 
Kubernetes VS. App Service: When the orchestrator challenges the platform
Kubernetes VS. App Service: When the orchestrator challenges the platformKubernetes VS. App Service: When the orchestrator challenges the platform
Kubernetes VS. App Service: When the orchestrator challenges the platformLorenzo Barbieri
 
Deploy, Manage, and Scale your Apps with AWS Elastic Beanstalk
Deploy, Manage, and Scale your Apps with AWS Elastic BeanstalkDeploy, Manage, and Scale your Apps with AWS Elastic Beanstalk
Deploy, Manage, and Scale your Apps with AWS Elastic BeanstalkAmazon Web Services
 
Aws elastic beanstalk
Aws elastic beanstalkAws elastic beanstalk
Aws elastic beanstalkSusanAli16
 
Continuous delivery and deployment on AWS
Continuous delivery and deployment on AWSContinuous delivery and deployment on AWS
Continuous delivery and deployment on AWSShiva Narayanaswamy
 
基于Aws的持续集成、交付和部署 代闻
基于Aws的持续集成、交付和部署 代闻基于Aws的持续集成、交付和部署 代闻
基于Aws的持续集成、交付和部署 代闻Mason Mei
 
Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...
Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...
Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...Amazon Web Services
 
Delivering High-Availability Web Services with NGINX Plus on AWS
Delivering High-Availability Web Services with NGINX Plus on AWSDelivering High-Availability Web Services with NGINX Plus on AWS
Delivering High-Availability Web Services with NGINX Plus on AWSNGINX, Inc.
 
DevOps with Elastic Beanstalk - TCCC-2014
DevOps with Elastic Beanstalk - TCCC-2014DevOps with Elastic Beanstalk - TCCC-2014
DevOps with Elastic Beanstalk - TCCC-2014scolestock
 
Infrastructure Continuous Delivery Using AWS CloudFormation
Infrastructure Continuous Delivery Using AWS CloudFormationInfrastructure Continuous Delivery Using AWS CloudFormation
Infrastructure Continuous Delivery Using AWS CloudFormationAmazon Web Services
 
AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...
AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...
AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...Amazon Web Services
 
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...Amazon Web Services
 

Similar to E301 Elastic Beanstalk PaaS (20)

Continuous Integration and Deployment Best Practices on AWS
Continuous Integration and Deployment Best Practices on AWSContinuous Integration and Deployment Best Practices on AWS
Continuous Integration and Deployment Best Practices on AWS
 
Agile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic BeanstalkAgile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic Beanstalk
 
AWS January 2016 Webinar Series - Introduction to Deploying Applications on AWS
AWS January 2016 Webinar Series - Introduction to Deploying Applications on AWSAWS January 2016 Webinar Series - Introduction to Deploying Applications on AWS
AWS January 2016 Webinar Series - Introduction to Deploying Applications on AWS
 
Agile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic BeanstalkAgile Deployment using Git and AWS Elastic Beanstalk
Agile Deployment using Git and AWS Elastic Beanstalk
 
Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...
Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...
Managing Your Application Lifecycle on AWS: Continuous Integration and Deploy...
 
AWS Devops
AWS DevopsAWS Devops
AWS Devops
 
Using Azure DevOps to continuously build, test, and deploy containerized appl...
Using Azure DevOps to continuously build, test, and deploy containerized appl...Using Azure DevOps to continuously build, test, and deploy containerized appl...
Using Azure DevOps to continuously build, test, and deploy containerized appl...
 
Kubernetes VS. App Service: When the orchestrator challenges the platform
Kubernetes VS. App Service: When the orchestrator challenges the platformKubernetes VS. App Service: When the orchestrator challenges the platform
Kubernetes VS. App Service: When the orchestrator challenges the platform
 
Deploy, Manage, and Scale your Apps with AWS Elastic Beanstalk
Deploy, Manage, and Scale your Apps with AWS Elastic BeanstalkDeploy, Manage, and Scale your Apps with AWS Elastic Beanstalk
Deploy, Manage, and Scale your Apps with AWS Elastic Beanstalk
 
Aws elastic beanstalk
Aws elastic beanstalkAws elastic beanstalk
Aws elastic beanstalk
 
Continuous delivery and deployment on AWS
Continuous delivery and deployment on AWSContinuous delivery and deployment on AWS
Continuous delivery and deployment on AWS
 
基于Aws的持续集成、交付和部署 代闻
基于Aws的持续集成、交付和部署 代闻基于Aws的持续集成、交付和部署 代闻
基于Aws的持续集成、交付和部署 代闻
 
Managing Your Cloud Assets
Managing Your Cloud AssetsManaging Your Cloud Assets
Managing Your Cloud Assets
 
Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...
Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...
Managing Docker & ECS Based Applications with AWS Elastic Beanstalk - DevDay ...
 
Delivering High-Availability Web Services with NGINX Plus on AWS
Delivering High-Availability Web Services with NGINX Plus on AWSDelivering High-Availability Web Services with NGINX Plus on AWS
Delivering High-Availability Web Services with NGINX Plus on AWS
 
DevOps with Elastic Beanstalk - TCCC-2014
DevOps with Elastic Beanstalk - TCCC-2014DevOps with Elastic Beanstalk - TCCC-2014
DevOps with Elastic Beanstalk - TCCC-2014
 
AWS elastic beanstalk
AWS elastic beanstalkAWS elastic beanstalk
AWS elastic beanstalk
 
Infrastructure Continuous Delivery Using AWS CloudFormation
Infrastructure Continuous Delivery Using AWS CloudFormationInfrastructure Continuous Delivery Using AWS CloudFormation
Infrastructure Continuous Delivery Using AWS CloudFormation
 
AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...
AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...
AWS re:Invent 2016: Infrastructure Continuous Delivery Using AWS CloudFormati...
 
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
 

More from Thanh Nguyen

Building a NFT Marketplace DApp
Building a NFT Marketplace DAppBuilding a NFT Marketplace DApp
Building a NFT Marketplace DAppThanh Nguyen
 
Serverless Architecture 101 ⚡
Serverless Architecture 101 ⚡Serverless Architecture 101 ⚡
Serverless Architecture 101 ⚡Thanh Nguyen
 
The fundamentals of AWS Cloud Security 🛠⛅️🚀
The fundamentals of AWS Cloud Security 🛠⛅️🚀The fundamentals of AWS Cloud Security 🛠⛅️🚀
The fundamentals of AWS Cloud Security 🛠⛅️🚀Thanh Nguyen
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractThanh Nguyen
 
Amazon AWS Free-Tier
Amazon AWS Free-TierAmazon AWS Free-Tier
Amazon AWS Free-TierThanh Nguyen
 
Rapid Software Development Process
Rapid Software Development ProcessRapid Software Development Process
Rapid Software Development ProcessThanh Nguyen
 
PMI ACP Classroom Question Paper
PMI ACP Classroom Question PaperPMI ACP Classroom Question Paper
PMI ACP Classroom Question PaperThanh Nguyen
 
PMI ACP Classroom Question Paper with Answers
PMI ACP Classroom Question Paper with AnswersPMI ACP Classroom Question Paper with Answers
PMI ACP Classroom Question Paper with AnswersThanh Nguyen
 
PMI-ACP Case Study
PMI-ACP Case StudyPMI-ACP Case Study
PMI-ACP Case StudyThanh Nguyen
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 4
PMI-ACP Lesson 12 Knowledge and Skills Nugget 4PMI-ACP Lesson 12 Knowledge and Skills Nugget 4
PMI-ACP Lesson 12 Knowledge and Skills Nugget 4Thanh Nguyen
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 3
PMI-ACP Lesson 12 Knowledge and Skills Nugget 3PMI-ACP Lesson 12 Knowledge and Skills Nugget 3
PMI-ACP Lesson 12 Knowledge and Skills Nugget 3Thanh Nguyen
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 2
PMI-ACP Lesson 12 Knowledge and Skills Nugget 2PMI-ACP Lesson 12 Knowledge and Skills Nugget 2
PMI-ACP Lesson 12 Knowledge and Skills Nugget 2Thanh Nguyen
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 1
PMI-ACP Lesson 12 Knowledge and Skills Nugget 1PMI-ACP Lesson 12 Knowledge and Skills Nugget 1
PMI-ACP Lesson 12 Knowledge and Skills Nugget 1Thanh Nguyen
 
PMI-ACP Lesson 11 Agile Value Stream Analysis
PMI-ACP Lesson 11 Agile Value Stream AnalysisPMI-ACP Lesson 11 Agile Value Stream Analysis
PMI-ACP Lesson 11 Agile Value Stream AnalysisThanh Nguyen
 
PMI-ACP Lesson 10 Agile Metrics
PMI-ACP Lesson 10 Agile MetricsPMI-ACP Lesson 10 Agile Metrics
PMI-ACP Lesson 10 Agile MetricsThanh Nguyen
 
PMI-ACP Lesson 9 Agile Risk Management
PMI-ACP Lesson 9 Agile Risk ManagementPMI-ACP Lesson 9 Agile Risk Management
PMI-ACP Lesson 9 Agile Risk ManagementThanh Nguyen
 
PMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based Prioritization
PMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based PrioritizationPMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based Prioritization
PMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based PrioritizationThanh Nguyen
 
PMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based Prioritization
PMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based PrioritizationPMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based Prioritization
PMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based PrioritizationThanh Nguyen
 
PMI-ACP Lesson 07 Soft Skills Negotiation
PMI-ACP Lesson 07 Soft Skills NegotiationPMI-ACP Lesson 07 Soft Skills Negotiation
PMI-ACP Lesson 07 Soft Skills NegotiationThanh Nguyen
 
PMI-ACP Lesson 06 Quality
PMI-ACP Lesson 06 QualityPMI-ACP Lesson 06 Quality
PMI-ACP Lesson 06 QualityThanh Nguyen
 

More from Thanh Nguyen (20)

Building a NFT Marketplace DApp
Building a NFT Marketplace DAppBuilding a NFT Marketplace DApp
Building a NFT Marketplace DApp
 
Serverless Architecture 101 ⚡
Serverless Architecture 101 ⚡Serverless Architecture 101 ⚡
Serverless Architecture 101 ⚡
 
The fundamentals of AWS Cloud Security 🛠⛅️🚀
The fundamentals of AWS Cloud Security 🛠⛅️🚀The fundamentals of AWS Cloud Security 🛠⛅️🚀
The fundamentals of AWS Cloud Security 🛠⛅️🚀
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart Contract
 
Amazon AWS Free-Tier
Amazon AWS Free-TierAmazon AWS Free-Tier
Amazon AWS Free-Tier
 
Rapid Software Development Process
Rapid Software Development ProcessRapid Software Development Process
Rapid Software Development Process
 
PMI ACP Classroom Question Paper
PMI ACP Classroom Question PaperPMI ACP Classroom Question Paper
PMI ACP Classroom Question Paper
 
PMI ACP Classroom Question Paper with Answers
PMI ACP Classroom Question Paper with AnswersPMI ACP Classroom Question Paper with Answers
PMI ACP Classroom Question Paper with Answers
 
PMI-ACP Case Study
PMI-ACP Case StudyPMI-ACP Case Study
PMI-ACP Case Study
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 4
PMI-ACP Lesson 12 Knowledge and Skills Nugget 4PMI-ACP Lesson 12 Knowledge and Skills Nugget 4
PMI-ACP Lesson 12 Knowledge and Skills Nugget 4
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 3
PMI-ACP Lesson 12 Knowledge and Skills Nugget 3PMI-ACP Lesson 12 Knowledge and Skills Nugget 3
PMI-ACP Lesson 12 Knowledge and Skills Nugget 3
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 2
PMI-ACP Lesson 12 Knowledge and Skills Nugget 2PMI-ACP Lesson 12 Knowledge and Skills Nugget 2
PMI-ACP Lesson 12 Knowledge and Skills Nugget 2
 
PMI-ACP Lesson 12 Knowledge and Skills Nugget 1
PMI-ACP Lesson 12 Knowledge and Skills Nugget 1PMI-ACP Lesson 12 Knowledge and Skills Nugget 1
PMI-ACP Lesson 12 Knowledge and Skills Nugget 1
 
PMI-ACP Lesson 11 Agile Value Stream Analysis
PMI-ACP Lesson 11 Agile Value Stream AnalysisPMI-ACP Lesson 11 Agile Value Stream Analysis
PMI-ACP Lesson 11 Agile Value Stream Analysis
 
PMI-ACP Lesson 10 Agile Metrics
PMI-ACP Lesson 10 Agile MetricsPMI-ACP Lesson 10 Agile Metrics
PMI-ACP Lesson 10 Agile Metrics
 
PMI-ACP Lesson 9 Agile Risk Management
PMI-ACP Lesson 9 Agile Risk ManagementPMI-ACP Lesson 9 Agile Risk Management
PMI-ACP Lesson 9 Agile Risk Management
 
PMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based Prioritization
PMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based PrioritizationPMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based Prioritization
PMI-ACP Lesson 08 Nugget 2 Agile & Scrum - Value-Based Prioritization
 
PMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based Prioritization
PMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based PrioritizationPMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based Prioritization
PMI-ACP Lesson 08 Nugget 1 Agile & Scrum Value-based Prioritization
 
PMI-ACP Lesson 07 Soft Skills Negotiation
PMI-ACP Lesson 07 Soft Skills NegotiationPMI-ACP Lesson 07 Soft Skills Negotiation
PMI-ACP Lesson 07 Soft Skills Negotiation
 
PMI-ACP Lesson 06 Quality
PMI-ACP Lesson 06 QualityPMI-ACP Lesson 06 Quality
PMI-ACP Lesson 06 Quality
 

Recently uploaded

Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 

Recently uploaded (20)

Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 

E301 Elastic Beanstalk PaaS

  • 1. AWS Elastic Beanstalk Deploy, Scale and Modernize Web Applications 1. AWS Elastic Beanstalk 101 2. Elastic Beanstalk using CDK (Github source code) 3. Gateway to Modernization: Shared ALB to ECS/EKS 🎯 BUILDING MODERN APPLICATIONS
  • 2. q AWS Elastic Beanstalk 101 q Elastic Beanstalk using CDK vInfrastructure Provisioning and Configuration vDeployment, Load Balancing, Auto Scaling vAutomate Deployment CI/CD q Gateway to Modernization: Shared Load Balancing Agenda
  • 3. Challenge - Migrating a Web-App to the Cloud 🎯 How do I move my web-app to the cloud ++ 🦾 design for high availability ++ ⚡ scale dynamically ++ 🎲 deploy application versions safely ++ ⚽ keep the OS patched ++ 😎 modernize it over time? Web Back-ends Web Apps & Websites API Services
  • 4. Deploy and Scale Monolith AWS Elastic Beanstalk Availability Zone 1 Availability Zone 2 Auto Scaling Group Amazon RDS (Master) Instances Amazon RDS (Slave) Elastic Load Balancing (ELB)
  • 5. Elastic Beanstalk A fully Managed Service for hosting Web Applications Low management overhead Easy to get started Gateway to modernization
  • 6. Multiple ways to upload a source bundle: • EB console • EB CLI • AWS Extensions for .NET CLI • AWS Toolkit for Visual Studio • Windows Web App Migration Assistant (.NET apps) • CI/CD integration Easy to get started Upload Easy to get started 1-click deployment automatically provisions: • Auto scaling • Load balancing • Network configuration • App deployment Deploy Configure Select from 11 runtime platforms, including: • Python • Java • Node.JS • .NET • Docker • PHP • Tomcat
  • 7. Availability Zone 1 Elastic Beanstalk Architecture VPC AWS Cloud Availability Zone 2 Auto Scaling Group Elastic Beanstalk environment Web server instances Web server instances myapp.com Application Load Balancer Amazon Route 53 Easy to get started • Highly Available • Scalable • Provisioned Automatically
  • 8. • Safely deploys app updates while monitoring app health • Choose from all-at-once, rolling, traffic splitting or blue/green deployments • Durably stores each app version to S3 for easy rollback Low management overhead Low Management Overhead Automated App Deployments • Keeps the operating system and runtime updated with latest patches and updates • Monthly releases of new platform updates • Configurable update schedule Automated Platform Updates • Summarizes app health based on multiple inputs • Monitors HTTP error rates & request/response latency • Monitors resource usage (CPU, network, memory) • Logs health events • Sends notifications based on user-defined thresholds App Health Monitoring
  • 9. Elastic Beanstalk Auto Scaling group Application Load Balancer V2 V2 V2 V2 Auto Scaling group 90% of traffic 10% of traffic 100% of traffic 100% of traffic Safely rollout application updates with Traffic Splitting Deployment Low management overhead
  • 10. Stay appraised of application health Low management overhead • Dashboard with detailed application metrics • Log events with CloudWatch Logs streaming • Easily enable AWS X-Ray for analyzing and debugging
  • 11. • Automatically deploy to Elastic Beanstalk with each Code Commit. • Create a CI/CD pipeline using the CodePipeline/Elastic Beanstalk integration. • Integrate Elastic Beanstalk into an existing CI/CD pipeline Gateway to Modernization Automate deployments with CI/CD Gateway to modernization • Containerize an app automatically • Gradually adopt a service- oriented architecture Modernize with containerization • Run .NET Core apps in EB Linux environments and save 30% or more vs. Windows • Convert apps from .NET Framework to .NET Core to run on Elastic Beanstalk/Linux Replatform from Windows to Linux
  • 12. Shared Application Load Balancer capability § Share an ALB among EB environments § Reduce ALB costs while modernizing your app § Use Host-based and Path- based rules to serve traffic to multiple environments or services hosted on Beanstalk or ECS Gateway to modernization
  • 13. Adopt a Service-Oriented Architecture Gateway to modernization Migrate app as-is VM Web app Elastic Beanstalk/EC2 Web app Elastic Beanstalk/EC2 Shared ALB on-prem ECS/EC2 ECS/Fargate Modernize: Share an ALB to forward traffic to your monolith and distributed service ü Decoupled components can scale independently ü Perform safe deployments with out app downtime ü Cost savings from sharing an ALB across multiple environments
  • 14. Adopt a Service-Oriented Architecture Gateway to modernization Migrate app as-is VM Elastic Beanstalk/EC2 on-prem Modernize app components as containerized microservices running in Elastic Beanstalk, ECS, or EKS Monolithic App Inventory Service Auth Service Order Service Monolithic App Inventory Service Auth Service Order Service EKS/Fargate Inventory Service Elastic Beanstalk/EC2 Auth Service inventory.local auth.local ü Unblocks teams from monolithic pipelines ü Decoupled components can scale independently
  • 15. AWS Elastic Beanstalk $ eb init Create your Elastic Beanstalk app 01 02 Create the resources and launch the application 03 $ eb create Deploy updates $ eb deploy
  • 16. What is AWS Elastic Beanstalk? Automatically handles: Ø Infrastructure provisioning and configuration Ø Ongoing management of infrastructure Ø Deployment Ø Load balancing Ø Auto scaling Ø Health monitoring Ø Automated Updates Ø Analysis and debugging Ø Logging There is no additional charge for Elastic Beanstalk Provision / Configure Deploy Manage / Monitor
  • 17. Application code HTTP server Application server Language interpreter Operating system Host 1. Application: “Container” that encapsulates code, infra, etc. 2. Application version: Code that you create and deploy 3. Platform: Language runtimes to run the application. Platforms containing the most popular runtimes (Java, .NET, Go, …) as well as Docker images, allowing you to bring your own 4. Environment: Group of AWS infrastructure elements to support running the application What does Elastic Beanstalk do? managed by Elastic Beanstalk
  • 18. Application versions q Every deployment is its own unique version q All versions stored in Amazon S3 q Allows easy rollback to a previous version without having to back out committed code changes q Allows you to promote versions across different environments within an application AWS Elastic Beanstalk
  • 19. Extending to CI/CD – AWS developer tools Source Build Deploy AWS CodeCommit AWS CodeBuild AWS CodePipeline AWS CodeCommit • Fully managed Git service AWS CodeBuild • Fully managed build service that compiles source code, runs tests, and produces software packages AWS CodePipeline • Continuous deployment service for fast and reliable application updates
  • 20. What you’ve created Elastic Beanstalk/EC2 Shared ALB Elastic Beanstalk/EC2 DogWeather Amazon ECS/EC2 ECS/AWS Fargate ü Decoupled components can scale independently ü Promote distributed architectures ü Cost savings from sharing an ALB across multiple environments
  • 21. • Share an ALB among Elastic Beanstalk environments • Reduce ALB costs while modernizing your app • Use host-based and path-based rules to serve traffic to multiple environments or services hosted on Elastic Beanstalk or Amazon ECS Shared Application Load Balancer capability
  • 22. Platforms to host your Application Amazon EC2 App Rehosting Replatforming Refactoring AWS Elastic Beanstalk AWS Lambda AWS Elastic Container Service (AWS ECS) AWS Elastic Kubernetes Service (AWS EKS)
  • 23. q Perform lift-and-shift migration of Java, Windows .NET, Go workloads into a managed platform with health monitoring, automated managed updates https://github.com/awslabs/windows-web-app-migration-assistant q Modernize your application using multi-container Docker images on Elastic Beanstalk https://github.com/aws-samples/eb-docker-nginx-proxy q Try running a Machine Learning model on Elastic Beanstalk https://github.com/charlesmalafosse/aws-elasticbeanstalk-ml-server Challenges
  • 24. Replatforming your ASP.NET application using App2Container: Under the hood ASP.NET application server Upload the artifacts to Amazon S3 bucket Extract all necessary artifacts to containerize the application (Optional) Update database connection strings Analyze dependency and IIS configuration Select the IIS site to be containerized Run app2container inventory to discover all IIS sites capable to be containerized Build and push the container image Amazon ECR Amazon S3 bucket AWS Cloud App2Container workspace Amazon EC2 instance (Windows server with Docker installed) Amazon ECS Register ECS task definition Amazon EKS Generate service / deployment file to be used on Kubernetes
  • 25. Thank you! @nnthanh101 https://www.linkedin.com/in/nnthanh v Facebook Group: https://www.facebook.com/groups/modernapps/permalink/796401030955458/ v Source Code: https://github.com/nnthanh101/modernapps/tree/main/elastic-beanstalk