Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 307 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 307 Bytes

devops-project-004

#jenkins file

#!/bin/bash

cd /var/lib/jenkins/workspace/one/Terraform

terraform init terraform plan terraform $tf_action -auto-approve

if [ $TERRAFORM_ACTION = "destroy" ]; then exit 0 else cd ../Ansible ansible-playbook -i /opt/ansible/inventory/aws_ec2.yml deployment.yml fi