├── .DS_Store ├── 001 - Linux ├── AWK.md ├── README.md └── SED.md ├── 002 - BashScripting ├── README.md ├── Sample_Scripts.txt ├── Script-to-install-jenkins-Redhat └── Script-to-install-jenkins-Ubuntu ├── 003 - Git └── Git Documents.md ├── 004 - Networking └── Networking.md ├── 005 - Docker └── docker.md ├── 006 - kubernetes └── K8s.md ├── 007 - Ansible └── ansible.md ├── 008 - Terraform └── README.md ├── 009 - Jenkins ├── Install-jenkins-in-redhat │ └── jenkins.sh ├── Install-jenkins-in-ubuntu │ └── jenkins.sh └── README.md ├── 010 - AWS ├── 001 Aws cheatsheet.md ├── 002 Aws intro.md ├── 003 Ec2.md ├── 004 IAM.md ├── 005 S3.md ├── 006 vpc.md ├── 007 EBS.md ├── 008 RDS.md ├── 009 AWS storage services .md ├── 010 Cloudformation.md ├── 011 CodeBuild.md ├── 012 Codecommit.md ├── 013 Codepipeline.md ├── 014 Elastic Beanstalk.md ├── 015 Elastic Load Balancer.md ├── 016 codedeploy.md └── Cloudwatch.md ├── 011 - Prometheus-Grafana ├── README.md ├── docker │ ├── docker-compose.yaml │ └── prometheus │ │ └── prometheus.yml ├── install-grafana.sh ├── install-node-exporter.sh ├── install-prometheus.sh ├── node-exporter-init.dservice │ ├── README.md │ ├── install-node-exporter.sh │ ├── node-exporter-init.d.service │ └── node_exporter.sh ├── node-exporter.service ├── prometheus.service ├── prometheus.yml ├── prometheus_ec2.yml ├── prometheus_relabeeling.yml └── prometheus_serviceDiscovery.yml ├── 012 - Projects&SampleUseCases ├── Sample-UseCases.md ├── project 1.md ├── project 2.md ├── project 3.md ├── project 4.md ├── project 5.md ├── project 6.md ├── project 7.md └── project 8.md ├── 013 - AWS-Interview Preparation ├── .DS_Store ├── ADVANCED.md ├── AWS-CLI.md ├── CLOUDFORMATION.md ├── CLOUDFRONT.md ├── CLOUDTRAIL.md ├── CLOUDWATCH.md ├── CODEBUILD.md ├── CODEDEPLOY.md ├── CODEPIPELINE.md ├── DYNAMODB.md ├── EC2.md ├── ECR.md ├── ECS.md ├── EKS.md ├── ELASTIC BEANSTALK.md ├── ELB.md ├── IAM.md ├── LAMBDA.md ├── MIGRATION.md ├── RDS.md ├── ROUTE53.md ├── S3.md ├── SCENARIO BASED.md ├── SYSTEMS MANAGER.md ├── TERRAFORM.md └── VPC.md ├── AWS-Introduction.md ├── DevOps-Introduction.md ├── README.md └── SDLC.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/.DS_Store -------------------------------------------------------------------------------- /001 - Linux/AWK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/001 - Linux/AWK.md -------------------------------------------------------------------------------- /001 - Linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/001 - Linux/README.md -------------------------------------------------------------------------------- /001 - Linux/SED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/001 - Linux/SED.md -------------------------------------------------------------------------------- /002 - BashScripting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/002 - BashScripting/README.md -------------------------------------------------------------------------------- /002 - BashScripting/Sample_Scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/002 - BashScripting/Sample_Scripts.txt -------------------------------------------------------------------------------- /002 - BashScripting/Script-to-install-jenkins-Redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/002 - BashScripting/Script-to-install-jenkins-Redhat -------------------------------------------------------------------------------- /002 - BashScripting/Script-to-install-jenkins-Ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/002 - BashScripting/Script-to-install-jenkins-Ubuntu -------------------------------------------------------------------------------- /003 - Git/Git Documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/003 - Git/Git Documents.md -------------------------------------------------------------------------------- /004 - Networking/Networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/004 - Networking/Networking.md -------------------------------------------------------------------------------- /005 - Docker/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/005 - Docker/docker.md -------------------------------------------------------------------------------- /006 - kubernetes/K8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/006 - kubernetes/K8s.md -------------------------------------------------------------------------------- /007 - Ansible/ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/007 - Ansible/ansible.md -------------------------------------------------------------------------------- /008 - Terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/008 - Terraform/README.md -------------------------------------------------------------------------------- /009 - Jenkins/Install-jenkins-in-redhat/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/009 - Jenkins/Install-jenkins-in-redhat/jenkins.sh -------------------------------------------------------------------------------- /009 - Jenkins/Install-jenkins-in-ubuntu/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/009 - Jenkins/Install-jenkins-in-ubuntu/jenkins.sh -------------------------------------------------------------------------------- /009 - Jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/009 - Jenkins/README.md -------------------------------------------------------------------------------- /010 - AWS/001 Aws cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/001 Aws cheatsheet.md -------------------------------------------------------------------------------- /010 - AWS/002 Aws intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/002 Aws intro.md -------------------------------------------------------------------------------- /010 - AWS/003 Ec2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/003 Ec2.md -------------------------------------------------------------------------------- /010 - AWS/004 IAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/004 IAM.md -------------------------------------------------------------------------------- /010 - AWS/005 S3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/005 S3.md -------------------------------------------------------------------------------- /010 - AWS/006 vpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/006 vpc.md -------------------------------------------------------------------------------- /010 - AWS/007 EBS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/007 EBS.md -------------------------------------------------------------------------------- /010 - AWS/008 RDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/008 RDS.md -------------------------------------------------------------------------------- /010 - AWS/009 AWS storage services .md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/009 AWS storage services .md -------------------------------------------------------------------------------- /010 - AWS/010 Cloudformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/010 Cloudformation.md -------------------------------------------------------------------------------- /010 - AWS/011 CodeBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/011 CodeBuild.md -------------------------------------------------------------------------------- /010 - AWS/012 Codecommit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/012 Codecommit.md -------------------------------------------------------------------------------- /010 - AWS/013 Codepipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/013 Codepipeline.md -------------------------------------------------------------------------------- /010 - AWS/014 Elastic Beanstalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/014 Elastic Beanstalk.md -------------------------------------------------------------------------------- /010 - AWS/015 Elastic Load Balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/015 Elastic Load Balancer.md -------------------------------------------------------------------------------- /010 - AWS/016 codedeploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/016 codedeploy.md -------------------------------------------------------------------------------- /010 - AWS/Cloudwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/010 - AWS/Cloudwatch.md -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/README.md -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/docker/docker-compose.yaml -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/install-grafana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/install-grafana.sh -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/install-node-exporter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/install-node-exporter.sh -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/install-prometheus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/install-prometheus.sh -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/node-exporter-init.dservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/node-exporter-init.dservice/README.md -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/node-exporter-init.dservice/install-node-exporter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/node-exporter-init.dservice/install-node-exporter.sh -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/node-exporter-init.dservice/node-exporter-init.d.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/node-exporter-init.dservice/node-exporter-init.d.service -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/node-exporter-init.dservice/node_exporter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/node-exporter-init.dservice/node_exporter.sh -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/node-exporter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/node-exporter.service -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/prometheus.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/prometheus.service -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/prometheus.yml -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/prometheus_ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/prometheus_ec2.yml -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/prometheus_relabeeling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/prometheus_relabeeling.yml -------------------------------------------------------------------------------- /011 - Prometheus-Grafana/prometheus_serviceDiscovery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/011 - Prometheus-Grafana/prometheus_serviceDiscovery.yml -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/Sample-UseCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/Sample-UseCases.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 1.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 2.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 3.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 4.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 5.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 6.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 7.md -------------------------------------------------------------------------------- /012 - Projects&SampleUseCases/project 8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/012 - Projects&SampleUseCases/project 8.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/.DS_Store -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/ADVANCED.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/AWS-CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/AWS-CLI.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/CLOUDFORMATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/CLOUDFORMATION.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/CLOUDFRONT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/CLOUDFRONT.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/CLOUDTRAIL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/CLOUDTRAIL.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/CLOUDWATCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/CLOUDWATCH.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/CODEBUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/CODEBUILD.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/CODEDEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/CODEDEPLOY.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/CODEPIPELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/CODEPIPELINE.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/DYNAMODB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/DYNAMODB.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/EC2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/EC2.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/ECR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/ECR.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/ECS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/ECS.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/EKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/EKS.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/ELASTIC BEANSTALK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/ELASTIC BEANSTALK.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/ELB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/ELB.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/IAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/IAM.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/LAMBDA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/LAMBDA.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/MIGRATION.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/RDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/RDS.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/ROUTE53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/ROUTE53.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/S3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/S3.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/SCENARIO BASED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/SCENARIO BASED.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/SYSTEMS MANAGER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/SYSTEMS MANAGER.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/TERRAFORM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/TERRAFORM.md -------------------------------------------------------------------------------- /013 - AWS-Interview Preparation/VPC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/013 - AWS-Interview Preparation/VPC.md -------------------------------------------------------------------------------- /AWS-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/AWS-Introduction.md -------------------------------------------------------------------------------- /DevOps-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/DevOps-Introduction.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/README.md -------------------------------------------------------------------------------- /SDLC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zen-class/zen-class-devops-documentation/HEAD/SDLC.md --------------------------------------------------------------------------------