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ů.

27 řádky
651 B

  1. ---
  2. - hosts: localhost
  3. connection: local
  4. gather_facts: false
  5. tasks:
  6. - name: create two droplets
  7. digital_ocean_droplet:
  8. unique_name: yes
  9. region: ams3
  10. image: ubuntu-18-10-x64
  11. wait_timeout: 100
  12. name: "{{ item }}"
  13. size_id: s-1vcpu-1gb
  14. state: present
  15. ssh_keys: [ '1' ] # <---- put your numeric ssh key in here
  16. register: created_droplets
  17. with_items:
  18. - tmp-droplet-1
  19. - tmp-droplet-2
  20. - name: add to dynamic inventory
  21. add_host:
  22. name: "{{ item.data.ip_address }}"
  23. group: do
  24. with_items: "{{ created_droplets.results }}"