Bharathkumar

Results 3 comments of Bharathkumar

is there anyway i can skip specific check ` cis-dil-benchmark-3.4.1` in my inspec command ?

@chris-rock meanwhile i did some workaround for to skip the failed checks 👍 thanks!!! We run checks with packer and my `regex_to_skip` variable is this. ``` regex_to_skip = "/^(((?!cis-dil-benchmark-1.1.[6789])(?!cis-dil-benchmark-1.1.1[01234])(?!cis-dil-benchmark-1.1.[2345])(?!cis-dil-benchmark-1.4.2)(?!cis-dil-benchmark-6.1.[3579])(?!cis-dil-benchmark-1.[16].1.[38])(?!cis-dil-benchmark-3.6.[2345])(?!cis-dil-benchmark-5.4.1.2)(?!cis-dil-benchmark-4.1.12)(?!cis-dil-benchmark-3.4.1)(?!cis-dil-benchmark-1.1.17)(?!cis-dil-benchmark-4.2.4).))*$/" ```...

we can use `set_fact` to fix this like this. @TerryHowe @absynth76 @michalmedvecky ``` tasks: - set_fact: vaultdata: "{{ vaultdata | default({}) | combine ({ item.name : item.value }) }}" with_items:...