Terraform: AWS infrastructure for voting app with CloudWatch monitoring#485
Open
bspark23 wants to merge 2 commits intodockersamples:mainfrom
Open
Terraform: AWS infrastructure for voting app with CloudWatch monitoring#485bspark23 wants to merge 2 commits intodockersamples:mainfrom
bspark23 wants to merge 2 commits intodockersamples:mainfrom
Conversation
- VPC with public/private subnets, IGW, NAT gateway - Security groups for ALB, ECS tasks, RDS, ElastiCache - Application Load Balancer with listeners for vote (80) and result (8080) - ECS Fargate cluster with task definitions and services for vote, result, worker - RDS Postgres replacing local db container - ElastiCache Redis replacing local redis container - IAM roles for ECS task execution and task permissions - CloudWatch log groups for container logging - Updated app source to read connection hostnames from env vars
- CPU utilization alarms for vote and result ECS services - Database connection count alarm for RDS - CPU utilization alarm for ElastiCache Redis - All alarms configured with 2-minute evaluation period and appropriate thresholds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This PR adds complete Terraform infrastructure for deploying the voting app to AWS production.
Changes
Infrastructure Outputs
Testing
Infrastructure deployed and tested. Vote app is functional and accepting votes.
Files Added