to_nice_json を使用して、取得した Juniper json 構成ファイルを出力しようとしています。「json.tool」などのポスト プレイブック ツールは使用できませんが、config をプルして、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"