├── .gitignore ├── LICENSE ├── README.md ├── docs ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── notes ├── ansible │ ├── Ansible_install_on_RHEL.MD │ └── Ansible_installation.MD ├── docker │ ├── DockerHub.MD │ ├── Docker_Commands.MD │ ├── Docker_Installation_Steps.MD │ └── install_apache_dockerfile.txt ├── jenkins │ ├── 01.jenkins_installation.MD │ ├── Ansible_integration.MD │ ├── Git_plugin_install.MD │ └── maven_install.MD ├── jenkins_jobs │ ├── Deploy_on_Container.MD │ ├── Deploy_on_Container_using_Ansible.MD │ ├── Deploy_on_Docker.MD │ ├── Deploy_on_Tomcat_Server.MD │ ├── Dockerfile.txt │ ├── My_First_Maven_Build.MD │ ├── create-docker-container.yml │ ├── create-docker-image.yml │ └── simple-docker-project.yml ├── kubernetes │ ├── Dockerfile │ ├── Integrating_Kubernetes_with_Ansible.MD │ ├── Integrating_Kubernetes_with_Jenkins.MD │ ├── Kubernetes-setup.MD │ ├── create-simple-devops-image.yml │ ├── kubernetes-valaxy-deployment.yml │ ├── kubernetes-valaxy-service.yml │ ├── nginx-deploy.yaml │ ├── valaxy-deploy.yml │ └── valaxy-service.yml └── tomcat │ └── 01.tomcat_installation.MD └── terraform ├── ansible-server ├── ansible-ec2.tf ├── config │ └── .gitkeep ├── iam-policy.tf ├── iam-role.tf ├── outputs.tf ├── provider.tf ├── security_group.tf ├── terraform_state.tf ├── user-data.sh └── variable.tf ├── docker-server ├── config │ └── .gitkeep ├── docker-ec2.tf ├── iam-policy.tf ├── iam-role.tf ├── outputs.tf ├── provider.tf ├── security_group.tf ├── terraform_state.tf ├── user-data.sh └── variable.tf ├── jenkins-ci ├── .terraform.lock.hcl ├── config │ └── .gitkeep ├── iam-policy.tf ├── iam-role.tf ├── jenkins-ec2.tf ├── outputs.tf ├── provider.tf ├── security_group.tf ├── terraform_state.tf ├── user-data.sh └── variable.tf ├── kube-server ├── config │ └── .gitkeep ├── iam-policy.tf ├── iam-role.tf ├── kube-ec2.tf ├── outputs.tf ├── provider.tf ├── route53.tf ├── security_group.tf ├── terraform_state.tf ├── user-data.sh └── variable.tf └── tomcat-server ├── .terraform.lock.hcl ├── config └── .gitkeep ├── iam-policy.tf ├── iam-role.tf ├── outputs.tf ├── provider.tf ├── security_group.tf ├── terraform_state.tf ├── tomcat-ec2.tf ├── user-data.sh └── variable.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/README.md -------------------------------------------------------------------------------- /docs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/1.png -------------------------------------------------------------------------------- /docs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/2.png -------------------------------------------------------------------------------- /docs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/3.png -------------------------------------------------------------------------------- /docs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/4.png -------------------------------------------------------------------------------- /docs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/5.png -------------------------------------------------------------------------------- /docs/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/6.png -------------------------------------------------------------------------------- /docs/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/7.png -------------------------------------------------------------------------------- /docs/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/8.png -------------------------------------------------------------------------------- /docs/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/docs/9.png -------------------------------------------------------------------------------- /notes/ansible/Ansible_install_on_RHEL.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/ansible/Ansible_install_on_RHEL.MD -------------------------------------------------------------------------------- /notes/ansible/Ansible_installation.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/ansible/Ansible_installation.MD -------------------------------------------------------------------------------- /notes/docker/DockerHub.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/docker/DockerHub.MD -------------------------------------------------------------------------------- /notes/docker/Docker_Commands.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/docker/Docker_Commands.MD -------------------------------------------------------------------------------- /notes/docker/Docker_Installation_Steps.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/docker/Docker_Installation_Steps.MD -------------------------------------------------------------------------------- /notes/docker/install_apache_dockerfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/docker/install_apache_dockerfile.txt -------------------------------------------------------------------------------- /notes/jenkins/01.jenkins_installation.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins/01.jenkins_installation.MD -------------------------------------------------------------------------------- /notes/jenkins/Ansible_integration.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins/Ansible_integration.MD -------------------------------------------------------------------------------- /notes/jenkins/Git_plugin_install.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins/Git_plugin_install.MD -------------------------------------------------------------------------------- /notes/jenkins/maven_install.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins/maven_install.MD -------------------------------------------------------------------------------- /notes/jenkins_jobs/Deploy_on_Container.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/Deploy_on_Container.MD -------------------------------------------------------------------------------- /notes/jenkins_jobs/Deploy_on_Container_using_Ansible.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/Deploy_on_Container_using_Ansible.MD -------------------------------------------------------------------------------- /notes/jenkins_jobs/Deploy_on_Docker.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/Deploy_on_Docker.MD -------------------------------------------------------------------------------- /notes/jenkins_jobs/Deploy_on_Tomcat_Server.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/Deploy_on_Tomcat_Server.MD -------------------------------------------------------------------------------- /notes/jenkins_jobs/Dockerfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/Dockerfile.txt -------------------------------------------------------------------------------- /notes/jenkins_jobs/My_First_Maven_Build.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/My_First_Maven_Build.MD -------------------------------------------------------------------------------- /notes/jenkins_jobs/create-docker-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/create-docker-container.yml -------------------------------------------------------------------------------- /notes/jenkins_jobs/create-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/create-docker-image.yml -------------------------------------------------------------------------------- /notes/jenkins_jobs/simple-docker-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/jenkins_jobs/simple-docker-project.yml -------------------------------------------------------------------------------- /notes/kubernetes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/Dockerfile -------------------------------------------------------------------------------- /notes/kubernetes/Integrating_Kubernetes_with_Ansible.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/Integrating_Kubernetes_with_Ansible.MD -------------------------------------------------------------------------------- /notes/kubernetes/Integrating_Kubernetes_with_Jenkins.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/Integrating_Kubernetes_with_Jenkins.MD -------------------------------------------------------------------------------- /notes/kubernetes/Kubernetes-setup.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/Kubernetes-setup.MD -------------------------------------------------------------------------------- /notes/kubernetes/create-simple-devops-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/create-simple-devops-image.yml -------------------------------------------------------------------------------- /notes/kubernetes/kubernetes-valaxy-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/kubernetes-valaxy-deployment.yml -------------------------------------------------------------------------------- /notes/kubernetes/kubernetes-valaxy-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/kubernetes-valaxy-service.yml -------------------------------------------------------------------------------- /notes/kubernetes/nginx-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/nginx-deploy.yaml -------------------------------------------------------------------------------- /notes/kubernetes/valaxy-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/valaxy-deploy.yml -------------------------------------------------------------------------------- /notes/kubernetes/valaxy-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/kubernetes/valaxy-service.yml -------------------------------------------------------------------------------- /notes/tomcat/01.tomcat_installation.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/notes/tomcat/01.tomcat_installation.MD -------------------------------------------------------------------------------- /terraform/ansible-server/ansible-ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/ansible-ec2.tf -------------------------------------------------------------------------------- /terraform/ansible-server/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/ansible-server/iam-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/iam-policy.tf -------------------------------------------------------------------------------- /terraform/ansible-server/iam-role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/iam-role.tf -------------------------------------------------------------------------------- /terraform/ansible-server/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/outputs.tf -------------------------------------------------------------------------------- /terraform/ansible-server/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/ansible-server/security_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/security_group.tf -------------------------------------------------------------------------------- /terraform/ansible-server/terraform_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/terraform_state.tf -------------------------------------------------------------------------------- /terraform/ansible-server/user-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/user-data.sh -------------------------------------------------------------------------------- /terraform/ansible-server/variable.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/ansible-server/variable.tf -------------------------------------------------------------------------------- /terraform/docker-server/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/docker-server/docker-ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/docker-ec2.tf -------------------------------------------------------------------------------- /terraform/docker-server/iam-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/iam-policy.tf -------------------------------------------------------------------------------- /terraform/docker-server/iam-role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/iam-role.tf -------------------------------------------------------------------------------- /terraform/docker-server/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/outputs.tf -------------------------------------------------------------------------------- /terraform/docker-server/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/docker-server/security_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/security_group.tf -------------------------------------------------------------------------------- /terraform/docker-server/terraform_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/terraform_state.tf -------------------------------------------------------------------------------- /terraform/docker-server/user-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/user-data.sh -------------------------------------------------------------------------------- /terraform/docker-server/variable.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/docker-server/variable.tf -------------------------------------------------------------------------------- /terraform/jenkins-ci/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/jenkins-ci/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/jenkins-ci/iam-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/iam-policy.tf -------------------------------------------------------------------------------- /terraform/jenkins-ci/iam-role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/iam-role.tf -------------------------------------------------------------------------------- /terraform/jenkins-ci/jenkins-ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/jenkins-ec2.tf -------------------------------------------------------------------------------- /terraform/jenkins-ci/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/outputs.tf -------------------------------------------------------------------------------- /terraform/jenkins-ci/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/jenkins-ci/security_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/security_group.tf -------------------------------------------------------------------------------- /terraform/jenkins-ci/terraform_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/terraform_state.tf -------------------------------------------------------------------------------- /terraform/jenkins-ci/user-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/user-data.sh -------------------------------------------------------------------------------- /terraform/jenkins-ci/variable.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/jenkins-ci/variable.tf -------------------------------------------------------------------------------- /terraform/kube-server/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/kube-server/iam-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/iam-policy.tf -------------------------------------------------------------------------------- /terraform/kube-server/iam-role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/iam-role.tf -------------------------------------------------------------------------------- /terraform/kube-server/kube-ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/kube-ec2.tf -------------------------------------------------------------------------------- /terraform/kube-server/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/outputs.tf -------------------------------------------------------------------------------- /terraform/kube-server/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/kube-server/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/route53.tf -------------------------------------------------------------------------------- /terraform/kube-server/security_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/security_group.tf -------------------------------------------------------------------------------- /terraform/kube-server/terraform_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/terraform_state.tf -------------------------------------------------------------------------------- /terraform/kube-server/user-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/user-data.sh -------------------------------------------------------------------------------- /terraform/kube-server/variable.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/kube-server/variable.tf -------------------------------------------------------------------------------- /terraform/tomcat-server/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/tomcat-server/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/tomcat-server/iam-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/iam-policy.tf -------------------------------------------------------------------------------- /terraform/tomcat-server/iam-role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/iam-role.tf -------------------------------------------------------------------------------- /terraform/tomcat-server/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/outputs.tf -------------------------------------------------------------------------------- /terraform/tomcat-server/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/tomcat-server/security_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/security_group.tf -------------------------------------------------------------------------------- /terraform/tomcat-server/terraform_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/terraform_state.tf -------------------------------------------------------------------------------- /terraform/tomcat-server/tomcat-ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/tomcat-ec2.tf -------------------------------------------------------------------------------- /terraform/tomcat-server/user-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/user-data.sh -------------------------------------------------------------------------------- /terraform/tomcat-server/variable.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murshidazher/simple-devops-project/HEAD/terraform/tomcat-server/variable.tf --------------------------------------------------------------------------------