diff options
author | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2018-04-20 15:00:52 +0200 |
---|---|---|
committer | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2018-04-20 15:00:52 +0200 |
commit | 0682b86504faf606b9017bc82bdbabd3af237db6 (patch) | |
tree | 0aa3a511d9697363a0bc24f228554c14d4c2b312 /tasks | |
parent | d213edd127a145821e419e80104a838da421e7ca (diff) | |
download | ansible-kong-app-0682b86504faf606b9017bc82bdbabd3af237db6.tar.gz ansible-kong-app-0682b86504faf606b9017bc82bdbabd3af237db6.tar.zst ansible-kong-app-0682b86504faf606b9017bc82bdbabd3af237db6.zip |
fix deprecation warning
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/plugins.yml | 2 | ||||
-rw-r--r-- | tasks/routes.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tasks/plugins.yml b/tasks/plugins.yml index c03bca7..f096d4b 100644 --- a/tasks/plugins.yml +++ b/tasks/plugins.yml | |||
@@ -25,4 +25,4 @@ | |||
25 | id: "{{ current_config.id }}" | 25 | id: "{{ current_config.id }}" |
26 | current_body: "{{ (current_id_hash.id == '') | ternary({}, current_id_hash) }}" | 26 | current_body: "{{ (current_id_hash.id == '') | ternary({}, current_id_hash) }}" |
27 | exists_plugin: "{{ current_id_hash.id == '' }}" | 27 | exists_plugin: "{{ current_id_hash.id == '' }}" |
28 | when: not kong_app_service_plugins_check|skipped | 28 | when: not kong_app_service_plugins_check is skipped |
diff --git a/tasks/routes.yml b/tasks/routes.yml index d4d912f..4581e8c 100644 --- a/tasks/routes.yml +++ b/tasks/routes.yml | |||
@@ -28,4 +28,4 @@ | |||
28 | apikey: "{{ kong_app_admin_apikey }}" | 28 | apikey: "{{ kong_app_admin_apikey }}" |
29 | status_code: 204 | 29 | status_code: 204 |
30 | with_items: "{{ kong_app_service_routes_check.json.data }}" | 30 | with_items: "{{ kong_app_service_routes_check.json.data }}" |
31 | when: not kong_app_service_routes_check|skipped | 31 | when: not kong_app_service_routes_check is skipped |