Ansible repo for digital ocean projects
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # - name: Gather information about a specific droplet by name
- community.digitalocean.digital_ocean_droplet_info:
- oauth_token: "{{ lookup('ansible.builtin.env', 'DO_API_TOKEN') }}"
- name: mpdb1
- register: droplets
- - name: Print return information from the previous task
- ansible.builtin.debug:
- msg : "{{ droplets.data[0] }}"
-
|