-
-
Save dmsimard/1f3b40c84879da7ade3b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Capture facts for output to file | |
setup: | |
register: ansible_facts | |
- name: Output facts to file | |
copy: | |
content: "{{ ansible_facts | to_nice_json }}" | |
dest: "./before.txt" | |
- set_fact: | |
one_fact: something | |
- name: Capture facts for output to file | |
setup: | |
register: ansible_facts | |
- name: Output facts to file | |
copy: | |
content: "{{ ansible_facts | to_nice_json }}" | |
dest: "./after.txt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment