joelbirchler
2020-02-28 222a14f6e10ed54e0b22b58a45366b443323aa14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
 
- name: Setting up workload
  debug:
    msg: "Setting up workload {{ workload_name }}."
  when: not silent|bool
 
- name: Setting up GitLab
  include_tasks: gitlab.yml
 
- name: Setting up Tower
  include_tasks: tower.yml
 
# Leave this as the last task in the playbook.
- name: workload tasks complete
  debug:
    msg: "Workload Tasks completed successfully."
  when: not silent|bool