test.yaml 296 B

123456789101112131415
  1. #!/usr/bin/ansible-playbook
  2. ---
  3. - hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - yedit:
  7. src: /home/kwoodson/git/openshift-ansible/roles/lib_yaml_editor/build/test/foo.yml
  8. key: foo
  9. value: barplus
  10. state: present
  11. register: output
  12. - debug:
  13. msg: "{{ output }}"