├── .gitignore ├── GitOps-Fundamental-Codefresh ├── ArgoCD-Basics.md ├── Hands-On-Files │ ├── deployment.yml │ └── service.yml ├── Introduction-To-GitOps.md └── Using-ArgoCD.md ├── HashiCorp-Terraform-Associate ├── Code │ ├── 001-getting-started │ │ ├── .terraform.lock.hcl │ │ ├── aws.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── providers.tf │ │ └── variables.tf │ ├── 002-provisioners-cloud-init │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── private_ips.txt │ │ └── userdata.yaml │ ├── 002-provisioners-null-resources │ │ ├── .terraform.lock.hcl │ │ └── main.tf │ ├── 003-providers-azure │ │ ├── .terraform.lock.hcl │ │ └── main.tf │ ├── 003-providers-gcp │ │ ├── .terraform.lock.hcl │ │ └── main.tf │ ├── 004-input-variables │ │ ├── .terraform.lock.hcl │ │ ├── aws_server │ │ │ └── main.tf │ │ ├── contents.md │ │ └── main.tf │ ├── 005-resource-meta-args │ │ ├── contents.md │ │ ├── count │ │ │ ├── .terraform.lock.hcl │ │ │ └── main.tf │ │ ├── depends_on │ │ │ ├── .terraform.lock.hcl │ │ │ └── main.tf │ │ ├── for_each │ │ │ ├── .terraform.lock.hcl │ │ │ └── main.tf │ │ └── lifecycle │ │ │ ├── .terraform.lock.hcl │ │ │ └── main.tf │ ├── 006-expressions-dynamic-block │ │ ├── .terraform.lock.hcl │ │ └── main.tf │ ├── 007-tf-state │ │ ├── .terraform.lock.hcl │ │ ├── README.md │ │ └── main.tf │ ├── 008-plan-apply │ │ ├── .terraform.lock.hcl │ │ ├── README.md │ │ ├── main.tf │ │ └── my_saved_plan.plan │ ├── 009-troubleshooting │ │ ├── .terraform.lock.hcl │ │ ├── README.md │ │ ├── main.tf │ │ └── tf.log │ ├── 010-modules │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ └── terraform-aws-apache-example │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── userdata.yaml │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── 011-workflows │ │ ├── README.md │ │ ├── main.tf │ │ └── variables.tf │ ├── 012-backends │ │ ├── README.md │ │ ├── mulitple_workspaces │ │ │ ├── .terraform.lock.hcl │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ ├── standard_s3 │ │ │ ├── .terraform.lock.hcl │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ └── terraform_remote_state │ │ │ ├── project-1 │ │ │ ├── .terraform.lock.hcl │ │ │ └── main.tf │ │ │ └── project-2 │ │ │ ├── .terraform.lock.hcl │ │ │ ├── main.tf │ │ │ └── variables.tf │ ├── 013-locking │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ └── variables.tf │ ├── 014-resources-complex-types │ │ ├── README.md │ │ └── main.tf │ ├── 015-terraform-cloud │ │ ├── README.md │ │ └── main.tf │ └── tutorial-practice │ │ ├── README.md │ │ └── tf-docker │ │ ├── .terraform.lock.hcl │ │ └── main.tf ├── Project │ └── dev-environment-tf-aws │ │ ├── .terraform.lock.hcl │ │ ├── README.md │ │ ├── main.tf │ │ └── providers.tf └── README.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/.gitignore -------------------------------------------------------------------------------- /GitOps-Fundamental-Codefresh/ArgoCD-Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/GitOps-Fundamental-Codefresh/ArgoCD-Basics.md -------------------------------------------------------------------------------- /GitOps-Fundamental-Codefresh/Hands-On-Files/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/GitOps-Fundamental-Codefresh/Hands-On-Files/deployment.yml -------------------------------------------------------------------------------- /GitOps-Fundamental-Codefresh/Hands-On-Files/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/GitOps-Fundamental-Codefresh/Hands-On-Files/service.yml -------------------------------------------------------------------------------- /GitOps-Fundamental-Codefresh/Introduction-To-GitOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/GitOps-Fundamental-Codefresh/Introduction-To-GitOps.md -------------------------------------------------------------------------------- /GitOps-Fundamental-Codefresh/Using-ArgoCD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/GitOps-Fundamental-Codefresh/Using-ArgoCD.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/001-getting-started/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/001-getting-started/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/001-getting-started/aws.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/001-getting-started/aws.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/001-getting-started/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/001-getting-started/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/001-getting-started/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/001-getting-started/outputs.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/001-getting-started/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/001-getting-started/providers.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/001-getting-started/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/001-getting-started/variables.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/002-provisioners-cloud-init/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/002-provisioners-cloud-init/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/002-provisioners-cloud-init/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/002-provisioners-cloud-init/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/002-provisioners-cloud-init/private_ips.txt: -------------------------------------------------------------------------------- 1 | 172.31.87.207 2 | -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/002-provisioners-cloud-init/userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/002-provisioners-cloud-init/userdata.yaml -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/002-provisioners-null-resources/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/002-provisioners-null-resources/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/002-provisioners-null-resources/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/002-provisioners-null-resources/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/003-providers-azure/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/003-providers-azure/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/003-providers-azure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/003-providers-azure/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/003-providers-gcp/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/003-providers-gcp/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/003-providers-gcp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/003-providers-gcp/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/004-input-variables/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/004-input-variables/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/004-input-variables/aws_server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/004-input-variables/aws_server/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/004-input-variables/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/004-input-variables/contents.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/004-input-variables/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/004-input-variables/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/contents.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/count/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/count/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/count/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/count/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/depends_on/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/depends_on/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/depends_on/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/depends_on/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/for_each/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/for_each/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/for_each/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/for_each/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/lifecycle/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/lifecycle/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/005-resource-meta-args/lifecycle/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/005-resource-meta-args/lifecycle/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/006-expressions-dynamic-block/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/006-expressions-dynamic-block/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/006-expressions-dynamic-block/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/006-expressions-dynamic-block/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/007-tf-state/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/007-tf-state/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/007-tf-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/007-tf-state/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/007-tf-state/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/007-tf-state/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/008-plan-apply/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/008-plan-apply/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/008-plan-apply/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/008-plan-apply/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/008-plan-apply/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/008-plan-apply/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/008-plan-apply/my_saved_plan.plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/008-plan-apply/my_saved_plan.plan -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/009-troubleshooting/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/009-troubleshooting/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/009-troubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/009-troubleshooting/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/009-troubleshooting/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/009-troubleshooting/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/009-troubleshooting/tf.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/009-troubleshooting/tf.log -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/LICENSE -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/outputs.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/userdata.yaml -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/variables.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/010-modules/terraform-aws-apache-example/versions.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/011-workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/011-workflows/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/011-workflows/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/011-workflows/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/011-workflows/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/011-workflows/variables.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/mulitple_workspaces/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/mulitple_workspaces/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/mulitple_workspaces/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/mulitple_workspaces/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/mulitple_workspaces/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/mulitple_workspaces/variables.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/standard_s3/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/standard_s3/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/standard_s3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/standard_s3/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/standard_s3/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/standard_s3/variables.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-1/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-1/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-1/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-2/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-2/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/012-backends/terraform_remote_state/project-2/variables.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/013-locking/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/013-locking/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/013-locking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/013-locking/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/013-locking/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/013-locking/variables.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/014-resources-complex-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/014-resources-complex-types/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/014-resources-complex-types/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/014-resources-complex-types/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/015-terraform-cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/015-terraform-cloud/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/015-terraform-cloud/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/tutorial-practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/tutorial-practice/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/tutorial-practice/tf-docker/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/tutorial-practice/tf-docker/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Code/tutorial-practice/tf-docker/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Code/tutorial-practice/tf-docker/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/.terraform.lock.hcl -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/README.md -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/main.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/Project/dev-environment-tf-aws/providers.tf -------------------------------------------------------------------------------- /HashiCorp-Terraform-Associate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/HashiCorp-Terraform-Associate/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verma-kunal/DevOps-Cloud-Certifications/HEAD/README.md --------------------------------------------------------------------------------