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.
ansible/roles/aruba/tasks/main.yml

13 lines
240 B
YAML

---
- name: Generation configuration
set_fact:
aruba__config: "{{ lookup('template', './config.j2') }}"
- name: Write configuration
delegate_to: localhost
copy:
content: "{{ aruba__config }}"
dest: /tmp/aruba.config
...