gitextract_8q9m8ecv/ ├── LICENSE ├── README.md ├── appspec.yml ├── day-14/ │ ├── README.md │ └── simple-python-app/ │ ├── Dockerfile │ ├── app.py │ ├── appspec.yml │ ├── buildspec.yml │ ├── requirements.txt │ ├── start_container.sh │ └── stop_container.sh ├── day-16/ │ ├── README.md │ ├── custom_metrics_demo/ │ │ ├── cloudwatch_metrics.py │ │ └── requirements.txt │ └── default_metrics_demo/ │ └── cpu_spike.py ├── day-17/ │ └── README.md ├── day-18/ │ ├── README.md │ └── ebs_stale_snapshosts.py ├── day-19/ │ └── README.md ├── day-2/ │ ├── README.md │ └── interview-questions ├── day-20/ │ └── README.md ├── day-21/ │ ├── Dockerfile │ ├── README.md │ ├── app.py │ ├── commands.md │ └── requirements.txt ├── day-22/ │ ├── 2048-app-deploy-ingress.md │ ├── README.md │ ├── alb-controller-add-on.md │ ├── configure-oidc-connector.md │ ├── installing-eks.md │ ├── prerequisites.md │ └── sample-app.md ├── day-24/ │ ├── main.tf │ ├── provider.tf │ ├── userdata.sh │ ├── userdata1.sh │ └── variables.tf ├── day-25/ │ ├── README.md │ ├── lambda_function.py │ └── lambda_function_permissions.md ├── day-3/ │ └── README.md ├── day-4/ │ └── README.md ├── day-5/ │ └── README.md ├── day-6/ │ └── README.md ├── day-7/ │ └── vpc-demo-2-tier-app ├── day-8/ │ └── Interview_q&a ├── day-9/ │ ├── README.md │ └── demos/ │ └── bucket-policies/ │ ├── restrict-access-to-owner.json │ └── static-website-basic.json ├── interview-questions/ │ ├── 01-ADVANCED.md │ ├── 01-SCENARIO-BASED.md │ ├── aws-cli.md │ ├── aws-terraform.md │ ├── cloud-migration.md │ ├── cloudformation.md │ ├── cloudfront.md │ ├── cloudtrail.md │ ├── cloudwatch.md │ ├── code-build.md │ ├── code-deploy.md │ ├── code-pipeline.md │ ├── dynamodb.md │ ├── ecr.md │ ├── ecs.md │ ├── eks.md │ ├── elastic-bean-stalk.md │ ├── elastic-cloud-compute.md │ ├── elb.md │ ├── iam.md │ ├── lambda-functions.md │ ├── rds.md │ ├── route53.md │ ├── s3.md │ ├── systems-manager.md │ └── vpc.md └── scripts/ ├── start_container.sh └── stop_container.sh