We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5068303 + d8a3451 commit 231d6b1Copy full SHA for 231d6b1
1 file changed
ansible/collections/ansible_collections/nhsd/apigee/roles/add_apim_guids_policy/tasks/main.yml
@@ -14,7 +14,8 @@
14
15
- name: extract guids from manifest
16
set_fact:
17
- API_GUID: "{{ manifest.meta.api.guid }}"
+ # Allow for depreated meta.api.id if meta.api.guid not provided
18
+ API_GUID: "{{ manifest.meta.api.guid | default(manifest.meta.api.id) }}"
19
API_SPEC_GUID: "{{ manifest.meta.api.spec_guids[0] | default('') }}"
20
21
- name: add policy xml file
0 commit comments