Book Image

AWS Certified Developer - Associate Guide

By : Vipul Tankariya, Bhavin Parmar
Book Image

AWS Certified Developer - Associate Guide

By: Vipul Tankariya, Bhavin Parmar

Overview of this book

AWS Certified Developer - Associate Guide starts with a quick introduction to AWS and the prerequisites to get you started. Then, this book gives you a fair understanding of core AWS services and basic architecture. Next, this book will describe about getting familiar with Identity and Access Management (IAM) along with Virtual private cloud (VPC). Moving ahead you will learn about Elastic Compute cloud (EC2) and handling application traffic with Elastic Load Balancing (ELB). Going ahead you we will talk about Monitoring with CloudWatch, Simple storage service (S3) and Glacier and CloudFront along with other AWS storage options. Next we will take you through AWS DynamoDB – A NoSQL Database Service, Amazon Simple Queue Service (SQS) and CloudFormation Overview. Finally, this book covers understanding Elastic Beanstalk and overview of AWS lambda. At the end of this book, we will cover enough topics, tips and tricks along with mock tests for you to be able to pass the AWS Certified Developer - Associate exam and develop as well as manage your applications on the AWS platform.
Table of Contents (29 chapters)
Title Page
Credits
About the Author
Acknowledgments
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Dedication
Preface
Index

ELB best practices


ELB best practices are as follows:

  • While defining a load balancer, it is recommended you identify target AZs and target groups
  • Use multiple AZs in the ELB as it provides high availability and fault tolerance
  • It is highly recommended that a security group for the ELB opens only required ports and protocols
  • Always configure health checks for the ELB on appropriate ports and protocols
  • If the ELB is created for a web server, use the HTTP/HTTPS protocol in health checks instead of the TCP protocol
  • Do not create internet-facing ELBs for internal needs
  • Use SSL security certificates to encrypt and decrypt HTTPS connections where possible
  • If a heavy traffic spike is expected on a given schedule, contact AWS support and ask them to pre-warm the ELB
  • Use ELB deletion protection from accidental deletion
  • Use cross-zone load balancing in a Classic Load Balancer for evenly distributing the load across all EC2 instances in associated AZs
  • Carefully enable connection draining on ELBs associated with...