Getting Repo from Github using ansible,Ansible-Vault and installing tomcat server using Playbook
Getting code from GitHub Public-Repo
To get code from the repo we need to use the git module in our playbook
---
- hosts: all
connection: ssh
tasks:
- name: getting code from github
git:
repo: https://github.com/vishalsiripuram...
vishalsiripruam.hashnode.dev2 min read