corso_ansible/8_variabili/20_playbook.yaml
2024-05-30 17:35:37 +02:00

9 lines
242 B
YAML

---
- name: printo a video una variabile
hosts: localhost
vars_files: 2_file_variabili.yaml
tasks:
- name: printo a video la variabile dichiarata nel file esterno
ansible.builtin.debug:
msg: "la variabile e' {{variabile}}"