├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── defaults └── main.yaml ├── meta └── main.yml ├── molecule ├── default │ ├── molecule.yml │ └── playbook.yml └── resources │ └── yaml-lint.yml └── tasks ├── main.yaml ├── nist ├── 800-53-ac-8.yaml └── 800-53-ia-5-1.yaml └── stig ├── V-23747.yaml ├── V-28784.yaml ├── V-3014.yaml ├── V-3210.yaml └── V-5612.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | **.iml 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/defaults/main.yaml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/playbook.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /molecule/resources/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/molecule/resources/yaml-lint.yml -------------------------------------------------------------------------------- /tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/tasks/main.yaml -------------------------------------------------------------------------------- /tasks/nist/800-53-ac-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/tasks/nist/800-53-ac-8.yaml -------------------------------------------------------------------------------- /tasks/nist/800-53-ia-5-1.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/stig/V-23747.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/tasks/stig/V-23747.yaml -------------------------------------------------------------------------------- /tasks/stig/V-28784.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/tasks/stig/V-28784.yaml -------------------------------------------------------------------------------- /tasks/stig/V-3014.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/tasks/stig/V-3014.yaml -------------------------------------------------------------------------------- /tasks/stig/V-3210.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/tasks/stig/V-3210.yaml -------------------------------------------------------------------------------- /tasks/stig/V-5612.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f5devcentral/ansible-role-bigip_hardening/HEAD/tasks/stig/V-5612.yaml --------------------------------------------------------------------------------