Skip to content

Commit acba799

Browse files
ADZ-3280 bug fix
1 parent 461503d commit acba799

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ansible/roles/remove-old-pr-products/tasks/remove-product.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
- block:
4343
- name: "remove product apps {{ product_slug }}"
4444
uri:
45-
url: "{{ org_uri }}/{{ item.ownerEndpoint }}/{{ item.owner }}/apps/{{ item.appName | urlencode }}/keys/{{ item.consumerKey }}/apiproducts/{{ product_slug }}"
45+
url: "{{ org_uri }}/{{ item.ownerEndpoint }}/{{ item.owner | urlencode }}/apps/{{ item.appName | urlencode }}/keys/{{ item.consumerKey }}/apiproducts/{{ product_slug }}"
4646
method: DELETE
4747
headers:
4848
Authorization: "Bearer {{ APIGEE_ACCESS_TOKEN }}"

ansible/roles/remove-target-products/tasks/remove-product.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- block:
1414
- name: "remove product apps {{ product_slug }}"
1515
uri:
16-
url: "{{ org_uri }}/{{ item.ownerEndpoint }}/{{ item.owner }}/apps/{{ item.appName | urlencode }}/keys/{{ item.consumerKey }}/apiproducts/{{ product_slug }}"
16+
url: "{{ org_uri }}/{{ item.ownerEndpoint }}/{{ item.owner | urlencode }}/apps/{{ item.appName | urlencode }}/keys/{{ item.consumerKey }}/apiproducts/{{ product_slug }}"
1717
method: DELETE
1818
headers:
1919
Authorization: "Bearer {{ APIGEE_ACCESS_TOKEN }}"

0 commit comments

Comments
 (0)