2

我正在尝试使用 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"
4

1 回答 1

0

将过滤器“to_nice_json”添加到目的地,这应该可以解决问题:

 - name: Copy temp json file to timestamped file
   copy:
     src:  "{{ temp_config_file }}"
     dest: "{{ conf_file_json | to_nice_json }}.json"
于 2021-07-26T02:02:16.067 回答