|
- ---
- - import_playbook: playbook_ssh_known_host.yml
- - name: Configure CrwodStrike
- hosts:
- - all
- gather_facts: yes
- pre_tasks:
- - name: Gather hardware facts
- setup:
- gather_subset:
- - hardware
- roles:
- - {role: iptables, when: ansible_facts.os_family == "RedHat", tags: ["iptables"], become: true, become_method: sudo}
- - {role: crowdstrike, tags: ["crowdstrike"], become: true, become_method: sudo}
- ...
|