我正在尝试使用 to_nice_json 输出检索到的 Juniper json 配置文件。我不能使用诸如“json.tool”之类的后期剧本工具,但我宁愿提取配置并将其保存为 nice_json 格式。下面是我创建序列化 json 文件的任务。
- name: Save device "json" config
juniper_junos_config:
provider: "{{ netconf }}"
retrieve: "committed"
format: "json"
dest: "{{ temp_config_file }}"
- name: Copy temp json file to timestamped file
copy:
src: "{{ temp_config_file }}"
dest: "{{ conf_file_json }}.json"