aboutsummaryrefslogtreecommitdiffhomepage
path: root/tasks/kong-app.yml
blob: e162c0924ab7315c389de94735aa4d26f2d50a6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- name: Check if service exists
  uri:
    url: "{{ kong_app_admin_url }}/services/{{ kong_app_service_name }}"
    method: GET
    headers:
      apikey: "{{ kong_app_admin_apikey }}"
    status_code: 200,404
  register: kong_app_check_service

- name: Update or Create service
  uri:
    url: "{{ kong_app_admin_url }}/services/{{ (kong_app_check_service.status == 404) | ternary('', kong_app_service_name) }}"
    method: "{{ (kong_app_check_service.status == 404) | ternary('POST', 'PATCH') }}"
    body: "{{ kong_app_service_body | to_json }}"
    status_code: 200,201
    headers:
      apikey: "{{ kong_app_admin_apikey }}"
      Content-Type: application/json

- name: Setup plugins
  import_tasks: plugins.yml

- name: Setup routes
  import_tasks: routes.yml