skip to Main Content

Variable in a variable Ansible – CentOS

I'm trying to use a variable in a variable. I have one JSON variable : os: { "centos_7_5": { offer: "CentOS", publisher: "OpenLogic", sku: "7.5", version: "latest" }, "debian_9": { offer: "Debian", publisher: "credativ", sku: "9", version: "latest" } }…

VIEW QUESTION

ansible with solidfire for netapp – CentOS

I have a sample netapp playbook --- - hosts: all gather_facts: False become: yes become_user: root become_method: sudo tasks: - name: Start restore na_elementsw_snapshot_restore: hostname: "{{ip_adr}}" username: "{{username}}" password: "" account_id: ansible-1 src_snapshot_id: snapshot_20171021 src_volume_id: volume-playarea dest_volume_name: dest-volume-area and this…

VIEW QUESTION
Back To Top
Search