playbook-hello.yml 228 B

1234567891011
  1. - name: Test de mon module
  2. hosts: localhost
  3. connection: local
  4. tasks:
  5. - name: Hello Steph
  6. hello_world:
  7. name: 'do not fail me'
  8. register: output
  9. - name: dump test output
  10. debug:
  11. var: output.message