Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

- name: extract guids from manifest
set_fact:
API_GUID: "{{ manifest.meta.api.guid }}"
# Allow for depreated meta.api.id if meta.api.guid not provided
API_GUID: "{{ manifest.meta.api.guid | default(manifest.meta.api.id) }}"
API_SPEC_GUID: "{{ manifest.meta.api.spec_guids[0] | default('') }}"

- name: add policy xml file
Expand Down