how to read json file using ansible

后端 未结 3 1576
失恋的感觉
失恋的感觉 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:16

    In case if you need to read a JSON formatted text and store it as a variable, it can be also handled by include_vars .

    - hosts: localhost
      tasks:
        - include_vars:
            file: variable-file.json
            name: variable
    
        - debug: var=variable
    

提交回复
热议问题