- name: Launch a Job Template
  tower_job_launch:
    job_template: "Demo Job Template"
    inventory: "Demo Inventory"
    credential: "Demo Credential"
  register: job

- assert:
    that:
      - "job is changed"
      - "job.status == 'pending'"

- name: Wait for the Job to finish
  tower_job_wait:
    job_id: "{{ job.id }}"
    timeout: 60