Repos with recipes to deploy some infrastructure services
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
457 B

  1. ---
  2. - import_playbook: playbook_ssh_known_host.yml
  3. - name: Configure CrwodStrike
  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: crowdstrike, tags: ["crowdstrike"], become: true, become_method: sudo}
  15. ...