Merge "Update tasks for efficiency"

This commit is contained in:
Zuul 2020-02-07 19:55:46 +00:00 committed by Gerrit Code Review
commit e6d7bca924
1 changed files with 1 additions and 5 deletions

View File

@ -37,11 +37,7 @@
register: stack_data_cmd register: stack_data_cmd
changed_when: false changed_when: false
- name: Read stack data
set_fact:
stack_data: "{{ stack_data_cmd.stdout | from_yaml }}"
- name: Create horizon url temp file - name: Create horizon url temp file
copy: copy:
content: "{{ stack_data.output_value.HorizonPublic.uri }}" content: "{{ (stack_data_cmd.stdout | from_yaml).output_value.HorizonPublic.uri }}"
dest: "{{ horizon_url_output_file }}" dest: "{{ horizon_url_output_file }}"