Ansible repo for digital ocean projects
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

junk.yml 374 B

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] }}"