Ansible repo for digital ocean projects
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920212223242526
  1. - hosts: do
  2. remote_user: root
  3. gather_facts: false
  4. vars:
  5. ansible_python_interpreter: /usr/bin/python3
  6. tasks:
  7. - name: wait for port 22 to become available
  8. wait_for:
  9. host: "{{ inventory_hostname }}"
  10. port: 22
  11. delegate_to: localhost
  12. - name: Gather Facts
  13. setup:
  14. - name: install nginx
  15. apt:
  16. name: nginx
  17. - name: modify html file
  18. template:
  19. src: ./index.html.j2
  20. dest: /var/www/html/index.html