diff --git a/inmem-test.yml b/inmem-test.yml index dd2c5b6..87aeff3 100644 --- a/inmem-test.yml +++ b/inmem-test.yml @@ -26,6 +26,10 @@ become: no + vars_files: + - vars/file_creation_test.yml + + tasks: - name : Run file test block : @@ -52,6 +56,10 @@ - "tower_provision_msg : {{ r_check_file.msg }}" + - include_role: + name: redhat_cop.tower_configuration.job_launch + + - name: Execute recovery API callback uri: url : "https://git.thezengarden.net/api/v4/projects/119/repository/commits" diff --git a/vars/file_creation_test.yml b/vars/file_creation_test.yml new file mode 100644 index 0000000..3ef8de9 --- /dev/null +++ b/vars/file_creation_test.yml @@ -0,0 +1,8 @@ +--- +tower_launch_jobs: + - name: file_creation_test + extra_vars: + tower_provision_host : "{{ tower_provision_host | default('localhost') }}" + + +...