We’re trying to incorporate some parts of the CIS tree into our ansible playbooks using include:
- include: “/{{ansible_env.CIS_HOME)}}/CIS/playbook.yml tags=section1.1.14,section1.2.1,section1.2.2,section1.5.2,section1.6.3”
CIS_HOME is defined in the environment correctly. We had tried lookuo(‘env’,‘CIS_HOME’) previously, but that also failed. We are currently using version 1.7.2 after reading that 1.8.1 and 1.8.2 do not work with tags in the include syntax. Prior to attempting to use tags to isolate parts of the CIS template, we were running 1.5 were syntax like:
- include $ENV(CIS_HOME)/CIS/playbook.yml
would work, but 1.5 was not working with tags in includes (though they worked from the command line.)
The include line is part of a larger playbook to initialize systems.
I am hoping there is something simple missing, but I have not found it in the manual.