Modularize site_pre.yml

This commit is contained in:
Salt 2022-04-18 11:12:48 -05:00
parent cfd4aa12b1
commit 7a2c05b131

View File

@ -6,19 +6,14 @@
- import_playbook: all.yml - import_playbook: all.yml
- import_playbook: all_scanner.yml - import_playbook: all_scanner.yml
# Platform configuration # Platform configuration
- import_playbook: platforms_ubuntu-20-04.yml - import_playbook: "{{ item }}"
- import_playbook: platforms_ubuntu-21-10.yml loop: "{{ lookup('fileglob' 'platforms_*.yml') }}"
- import_playbook: platforms_proxmox-ve-7.yml
# Manufacturer configuration # Manufacturer configuration
- import_playbook: manufacturers_raspi.yml - import_playbook: "{{ item }}"
- import_playbook: manufacturers_s76.yml loop: "{{ lookup('fileglob' 'manufacturers_*.yml') }}"
# Zerotier network configuration
- import_playbook: tags_zt-personal.yml
- import_playbook: tags_zt-management.yml
# Tags for fundamental services # Tags for fundamental services
- import_playbook: tags_snmp.yml - import_playbook: "{{ item }}"
- import_playbook: tags_nagios.yml loop: "{{ lookup('fileglob' 'tags_.yml') }}"
# Role (in the Netbox sense) configuration # Role (in the Netbox sense) configuration
- import_playbook: device_roles_bastion.yml - import_playbook: "{{ item }}"
- import_playbook: device_roles_game.yml loop: "{{ lookup('fileglob' 'device_roles_*.yml') }}"
- import_playbook: device_roles_workstation.yml