--- - name: Retrieve existing Services from the 3scale Admin Portal uri: url: "https://{{ inventory_hostname }}/admin/api/services.json?access_token={{ threescale_cicd_access_token|urlencode }}" validate_certs: no register: threescale_cicd_tmp_allservices - set_fact: threescale_cicd_existing_services: '{{ threescale_cicd_tmp_allservices.json|json_query(''services[*].service.system_name'') }}' threescale_cicd_existing_services_details: '{{ threescale_cicd_tmp_allservices.json|json_query(''services[].{"system_name": service.system_name, "id": service.id}'') }}' - set_fact: threescale_cicd_tmp_body_create_svc: '{{ "access_token=" ~ threescale_cicd_access_token|urlencode }}' - set_fact: threescale_cicd_tmp_body_create_svc: '{{ threescale_cicd_tmp_body_create_svc ~ "&" ~ (threescale_cicd_tmp_param.key|urlencode) ~ "=" ~ (threescale_cicd_tmp_param.value|urlencode) }}' with_dict: '{{ threescale_cicd_api_service_definition }}' loop_control: loop_var: threescale_cicd_tmp_param - set_fact: threescale_cicd_api_service_id: '{{ (threescale_cicd_existing_services_details|selectattr(''system_name'', ''equalto'', threescale_cicd_api_system_name)|first)[''id''] }}' when: 'threescale_cicd_api_system_name in threescale_cicd_existing_services' - name: Update the service uri: url: https://{{ inventory_hostname }}/admin/api/services/{{ threescale_cicd_api_service_id }}.json validate_certs: no method: PUT body: '{{ threescale_cicd_tmp_body_create_svc }}' status_code: 200 register: threescale_cicd_tmpresponse changed_when: 'threescale_cicd_tmpresponse.status == 200' when: 'threescale_cicd_api_system_name in threescale_cicd_existing_services' - name: Create the service uri: url: https://{{ inventory_hostname }}/admin/api/services.json validate_certs: no method: POST body: '{{ threescale_cicd_tmp_body_create_svc }}' status_code: 201 register: threescale_cicd_tmpresponse when: 'threescale_cicd_api_system_name not in threescale_cicd_existing_services' - set_fact: threescale_cicd_api_service_id: '{{ threescale_cicd_tmpresponse.json.service.id }}' when: 'threescale_cicd_api_system_name not in threescale_cicd_existing_services' - set_fact: threescale_cicd_existing_services: '{{ threescale_cicd_existing_services|union([ threescale_cicd_tmpresponse.json.service.system_name ]) }}' threescale_cicd_existing_services_details: '{{ threescale_cicd_existing_services_details|union([ { ''id'': threescale_cicd_tmpresponse.json.service.id, ''system_name'': threescale_cicd_tmpresponse.json.service.system_name } ]) }}' when: 'threescale_cicd_api_system_name not in threescale_cicd_existing_services' - name: Wait for a couple seconds pause: seconds: '{{ threescale_cicd_throttling }}'