Ansible repo for digital ocean projects
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789
  1. # - name: Gather information about a specific droplet by name
  2. community.digitalocean.digital_ocean_droplet_info:
  3. oauth_token: "{{ lookup('ansible.builtin.env', 'DO_API_TOKEN') }}"
  4. name: mpdb1
  5. register: droplets
  6. - name: Print return information from the previous task
  7. ansible.builtin.debug:
  8. msg : "{{ droplets.data[0] }}"