Repos with recipes to deploy some infrastructure services
Você não pode selecionar mais de 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.
 
 

17 linhas
492 B

  1. ---
  2. - import_playbook: playbook_ssh_known_host.yml
  3. - name: Configure Rapid7
  4. hosts:
  5. - all
  6. gather_facts: yes
  7. pre_tasks:
  8. - name: Gather hardware facts
  9. setup:
  10. gather_subset:
  11. - hardware
  12. roles:
  13. - {role: iptables, when: ansible_facts.os_family == "RedHat", tags: ["iptables"], become: true, become_method: sudo}
  14. - {role: rapid7, when: ansible_facts.os_family == "RedHat", tags : ["rapid7"], become: true, become_method: sudo}
  15. ...