10 lines
206 B
YAML
10 lines
206 B
YAML
|
---
|
||
|
- name: Initialize Deployment Server configurator
|
||
|
include_tasks: "../tasks/configure_dps.yml"
|
||
|
vars:
|
||
|
deployment_host: "{{ item }}"
|
||
|
with_items: "{{ deployment_servers }}"
|
||
|
tags:
|
||
|
- init_dp
|
||
|
|