Skip to content
Snippets Groups Projects
Commit 480dff81 authored by qweqweasdasd's avatar qweqweasdasd
Browse files

join list endpoints

parent f5c4eff6
No related branches found
No related tags found
No related merge requests found
......@@ -61,12 +61,15 @@
when: paas_ci_test_step == 'create_deployment'
- block:
- set_fact:
endpoints_to_scan: "{{ paas_ci_test.endpoints_to_scan }}"
- debug:
var: paas_ci_test.endpoints_to_scan
var: endpoints_to_scan
- name: Concatenate endpoints_to_scan items
set_fact:
endpoints_to_scan_list: "{{ paas_ci_test.endpoints_to_scan | join(',') }}"
endpoints_to_scan_list: "{{ endpoints_to_scan | join(',') }}"
- debug:
var: endpoints_to_scan_list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment