diff options
Diffstat (limited to 'tasks/kong-app.yml')
-rw-r--r-- | tasks/kong-app.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tasks/kong-app.yml b/tasks/kong-app.yml index d50c193..e162c09 100644 --- a/tasks/kong-app.yml +++ b/tasks/kong-app.yml | |||
@@ -7,15 +7,15 @@ | |||
7 | status_code: 200,404 | 7 | status_code: 200,404 |
8 | register: kong_app_check_service | 8 | register: kong_app_check_service |
9 | 9 | ||
10 | #- name: Update or Create service | 10 | - name: Update or Create service |
11 | # uri: | 11 | uri: |
12 | # url: "{{ kong_app_admin_url }}/services/{{ kong_app_service_name }}" | 12 | url: "{{ kong_app_admin_url }}/services/{{ (kong_app_check_service.status == 404) | ternary('', kong_app_service_name) }}" |
13 | # method: "{{ (kong_app_check_service.status_code == 404) | ternary ('POST', 'PATCH') }}" | 13 | method: "{{ (kong_app_check_service.status == 404) | ternary('POST', 'PATCH') }}" |
14 | # body: "{{ kong_app_service_body | to_json }}" | 14 | body: "{{ kong_app_service_body | to_json }}" |
15 | # headers: | 15 | status_code: 200,201 |
16 | # apikey: "{{ kong_app_admin_apikey }}" | 16 | headers: |
17 | # Content-Type: application/json | 17 | apikey: "{{ kong_app_admin_apikey }}" |
18 | # status_code: 200,201 | 18 | Content-Type: application/json |
19 | 19 | ||
20 | - name: Setup plugins | 20 | - name: Setup plugins |
21 | import_tasks: plugins.yml | 21 | import_tasks: plugins.yml |