-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.yaml
More file actions
41 lines (29 loc) · 1.13 KB
/
main.yaml
File metadata and controls
41 lines (29 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
- name: Include CIS Stage Specific vars
include_vars: cis-{{ cis_Stage }}.yaml
- name: Debian related Specification
include_tasks: configure_Debian.yaml
when:
ansible_os_family == 'Debian'
- name: CentOS related Specification
include_tasks: configure_RedHat.yaml
when: ansible_os_family == 'RedHat' and ansible_distribution != 'Amazon'
- name: Amazon Linux 2 related Specification
include_tasks: amazon_linux.yaml
when: ansible_distribution == 'Amazon'
# - name: Special purpose services
# include_tasks: services.yaml
# - name: Logging and monitoring
# include_tasks: audit.yaml
# - name: Additional Process Hardening
# include_tasks: pam_limit.yaml
# - name: Tcp Wrapper and System File Permissions
# include_tasks: file_permissions.yaml
# - name: Filesystem Configuration
# include_tasks: filesystem_configuration.yaml
# - name: Network Configuration Host
# include_tasks: network_configuration_host.yaml
# - name: Ensure bogus ICMP responses are ignored
# include_tasks: network_configuration_router.yaml
# - name: Ensure dccp and sctp is disabled
# include_tasks: network_protocol_and_unusedFilesystem.yaml