how to read json file using ansible

后端 未结 3 1577
失恋的感觉
失恋的感觉 2021-02-18 18:34

I have a json file in the same directory where my ansible script is. Following is the content of json file:

{ \"resources\":[
           {\"name\":\"package1\",          


        
3条回答
  •  感情败类
    2021-02-18 19:24

    You have to add a from_json jinja2 filter after the lookup:

    version_file: "{{ lookup('file','/home/shasha/devOps/tests/packageFile.json') | from_json }}"
    

提交回复
热议问题