| --- | |
| # tasks file for apigee-opdk-setup-edge-saml-config/ | |
| - name: Update cache with key and value | |
| cache: | |
| key: "{{ item.key }}" | |
| value: "{{ item.value }}" | |
| with_items: | |
| - { key: 'edgeui_response_file_path', value: '{{ edgeui_response_file_path }}' } | |
| - { key: 'edgeui_public_uris', value: '{{ edgeui_public_uris }}' } | |
| - name: Create Edge UI Response File | |
| template: | |
| src: "{{ edgeui_response_filename }}" | |
| dest: "{{ edgeui_response_file_path }}" | |
| mode: 0644 |