Files
ansible-playbooks/jenkins_vpn.yaml
2025-09-14 13:10:34 -07:00

18 lines
347 B
YAML

---
# note - this needs to be run on the jenkins vpn ip
- name: Matt-Cloud Jenkins VPN Client
hosts: all
become: yes
vars:
terse_packages: true
roles:
# - { role: cosmos_init, tags: ['cosmos_init'], vars: {"terse_packages": "true"}, when: not refresh_only | bool }
- { role: jenkins_vpn, tags: ['jenkins_vpn'] }
...