├── 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 ├── AWS Terraform Infra.jpg ├── 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 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/README.md -------------------------------------------------------------------------------- /appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/appspec.yml -------------------------------------------------------------------------------- /day-14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-14/README.md -------------------------------------------------------------------------------- /day-14/simple-python-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-14/simple-python-app/Dockerfile -------------------------------------------------------------------------------- /day-14/simple-python-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-14/simple-python-app/app.py -------------------------------------------------------------------------------- /day-14/simple-python-app/appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-14/simple-python-app/appspec.yml -------------------------------------------------------------------------------- /day-14/simple-python-app/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-14/simple-python-app/buildspec.yml -------------------------------------------------------------------------------- /day-14/simple-python-app/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /day-14/simple-python-app/start_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-14/simple-python-app/start_container.sh -------------------------------------------------------------------------------- /day-14/simple-python-app/stop_container.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # Stop the running container (if any) 5 | echo "Hi" 6 | -------------------------------------------------------------------------------- /day-16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-16/README.md -------------------------------------------------------------------------------- /day-16/custom_metrics_demo/cloudwatch_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-16/custom_metrics_demo/cloudwatch_metrics.py -------------------------------------------------------------------------------- /day-16/custom_metrics_demo/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | boto3 -------------------------------------------------------------------------------- /day-16/default_metrics_demo/cpu_spike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-16/default_metrics_demo/cpu_spike.py -------------------------------------------------------------------------------- /day-17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-17/README.md -------------------------------------------------------------------------------- /day-18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-18/README.md -------------------------------------------------------------------------------- /day-18/ebs_stale_snapshosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-18/ebs_stale_snapshosts.py -------------------------------------------------------------------------------- /day-19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-19/README.md -------------------------------------------------------------------------------- /day-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-2/README.md -------------------------------------------------------------------------------- /day-2/interview-questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-2/interview-questions -------------------------------------------------------------------------------- /day-20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-20/README.md -------------------------------------------------------------------------------- /day-21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-21/Dockerfile -------------------------------------------------------------------------------- /day-21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-21/README.md -------------------------------------------------------------------------------- /day-21/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-21/app.py -------------------------------------------------------------------------------- /day-21/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-21/commands.md -------------------------------------------------------------------------------- /day-21/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.0.1 2 | -------------------------------------------------------------------------------- /day-22/2048-app-deploy-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-22/2048-app-deploy-ingress.md -------------------------------------------------------------------------------- /day-22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-22/README.md -------------------------------------------------------------------------------- /day-22/alb-controller-add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-22/alb-controller-add-on.md -------------------------------------------------------------------------------- /day-22/configure-oidc-connector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-22/configure-oidc-connector.md -------------------------------------------------------------------------------- /day-22/installing-eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-22/installing-eks.md -------------------------------------------------------------------------------- /day-22/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-22/prerequisites.md -------------------------------------------------------------------------------- /day-22/sample-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-22/sample-app.md -------------------------------------------------------------------------------- /day-24/AWS Terraform Infra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-24/AWS Terraform Infra.jpg -------------------------------------------------------------------------------- /day-24/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-24/main.tf -------------------------------------------------------------------------------- /day-24/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-24/provider.tf -------------------------------------------------------------------------------- /day-24/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-24/userdata.sh -------------------------------------------------------------------------------- /day-24/userdata1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-24/userdata1.sh -------------------------------------------------------------------------------- /day-24/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-24/variables.tf -------------------------------------------------------------------------------- /day-25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-25/README.md -------------------------------------------------------------------------------- /day-25/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-25/lambda_function.py -------------------------------------------------------------------------------- /day-25/lambda_function_permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-25/lambda_function_permissions.md -------------------------------------------------------------------------------- /day-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-3/README.md -------------------------------------------------------------------------------- /day-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-4/README.md -------------------------------------------------------------------------------- /day-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-5/README.md -------------------------------------------------------------------------------- /day-6/README.md: -------------------------------------------------------------------------------- 1 | # Route53 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /day-7/vpc-demo-2-tier-app: -------------------------------------------------------------------------------- 1 | # VPC Demo for 2 tier app in private subnet 2 | 3 | https://youtu.be/FZPTL_kNvXc 4 | -------------------------------------------------------------------------------- /day-8/Interview_q&a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-8/Interview_q&a -------------------------------------------------------------------------------- /day-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-9/README.md -------------------------------------------------------------------------------- /day-9/demos/bucket-policies/restrict-access-to-owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-9/demos/bucket-policies/restrict-access-to-owner.json -------------------------------------------------------------------------------- /day-9/demos/bucket-policies/static-website-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/day-9/demos/bucket-policies/static-website-basic.json -------------------------------------------------------------------------------- /interview-questions/01-ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/01-ADVANCED.md -------------------------------------------------------------------------------- /interview-questions/01-SCENARIO-BASED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/01-SCENARIO-BASED.md -------------------------------------------------------------------------------- /interview-questions/aws-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/aws-cli.md -------------------------------------------------------------------------------- /interview-questions/aws-terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/aws-terraform.md -------------------------------------------------------------------------------- /interview-questions/cloud-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/cloud-migration.md -------------------------------------------------------------------------------- /interview-questions/cloudformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/cloudformation.md -------------------------------------------------------------------------------- /interview-questions/cloudfront.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/cloudfront.md -------------------------------------------------------------------------------- /interview-questions/cloudtrail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/cloudtrail.md -------------------------------------------------------------------------------- /interview-questions/cloudwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/cloudwatch.md -------------------------------------------------------------------------------- /interview-questions/code-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/code-build.md -------------------------------------------------------------------------------- /interview-questions/code-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/code-deploy.md -------------------------------------------------------------------------------- /interview-questions/code-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/code-pipeline.md -------------------------------------------------------------------------------- /interview-questions/dynamodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/dynamodb.md -------------------------------------------------------------------------------- /interview-questions/ecr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/ecr.md -------------------------------------------------------------------------------- /interview-questions/ecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/ecs.md -------------------------------------------------------------------------------- /interview-questions/eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/eks.md -------------------------------------------------------------------------------- /interview-questions/elastic-bean-stalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/elastic-bean-stalk.md -------------------------------------------------------------------------------- /interview-questions/elastic-cloud-compute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/elastic-cloud-compute.md -------------------------------------------------------------------------------- /interview-questions/elb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/elb.md -------------------------------------------------------------------------------- /interview-questions/iam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/iam.md -------------------------------------------------------------------------------- /interview-questions/lambda-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/lambda-functions.md -------------------------------------------------------------------------------- /interview-questions/rds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/rds.md -------------------------------------------------------------------------------- /interview-questions/route53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/route53.md -------------------------------------------------------------------------------- /interview-questions/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/s3.md -------------------------------------------------------------------------------- /interview-questions/systems-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/systems-manager.md -------------------------------------------------------------------------------- /interview-questions/vpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/interview-questions/vpc.md -------------------------------------------------------------------------------- /scripts/start_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/aws-devops-zero-to-hero/HEAD/scripts/start_container.sh -------------------------------------------------------------------------------- /scripts/stop_container.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # Stop the running container (if any) 5 | echo "Hi" --------------------------------------------------------------------------------