aboutsummaryrefslogtreecommitdiffhomepage
path: root/tasks/routes.yml
blob: 1a9f6dbafd040c3198e0d12ee0d357b8bfb322c8 (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
25
26
27
28
29
30
31
32
- name: Get app routes
  uri:
    url: "{{ kong_app_admin_url }}/services/{{ kong_app_service_name }}/routes"
    method: GET
    validate_certs: no
  register: kong_app_service_routes_check

- name: Set routes facts
  set_fact:
    kong_app_current_routes: "{{ kong_app_service_routes_check.json |default('{\"data\": []}') | from_json }}"

- name: Setup route
  uri:
    url: "{{ kong_app_admin_url }}/services/{{ kong_app_service_name }}/routes"
    method: POST
    body: "{{ route | to_json }}"
    headers:
      apikey: "{{ kong_app_admin_apikey }}"
      Content-Type: application/json
    status_code: 201
  with_items: "{{ kong_app_routes }}"
  loop_control:
    loop_var: route

- name: Delete old routes
  uri:
    url: "{{ kong_app_admin_url }}/services/routes/{{ item.id }}"
    method: DELETE
    headers:
      apikey: "{{ kong_app_admin_apikey }}"
    status_code: 204
  with_items: "{{ kong_app_current_routes.data }}"