You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
247 B
YAML
13 lines
247 B
YAML
2 weeks ago
|
- hosts: localhost
|
||
|
connection: local
|
||
|
vars:
|
||
|
external_list:
|
||
|
- external one
|
||
|
- external two
|
||
|
internal_list:
|
||
|
- internal one
|
||
|
- internal two
|
||
|
tasks:
|
||
|
- include_tasks: loop-control-int.yml
|
||
|
with_list: "{{ external_list }}"
|