Tok
2019-06-18 1b0ce883b3f124fb6be0fafb7bf4ab71731da286
ansible/configs/ansible-windows/pre_software.yml
@@ -39,6 +39,17 @@
    - step004
    - bastion_tasks
- name: Inject and configure FTL on bastion as grader host
  hosts: bastions
  become: true
  tasks:
    - name: Setup FTL
      include_role:
        name: ftl-injector
  tags:
    - step004
    - ftl-injector
- name: Place Tower License from env_secret_vars on bastion
  hosts: bastions
  become: yes
@@ -49,9 +60,8 @@
    - blockinfile:
        create: yes
        path: /root/tower_license.txt
        block: "{{tower_license}}"
        block: "{{ tower_license }}"
      when: tower_license is defined
- name: Configure windows machines
  hosts:
@@ -76,3 +86,4 @@
  tasks:
    - debug:
        msg: "Pre-Software checks completed successfully"
...