ansible-collection-hardening/molecule/nginx_hardening/converge.yml
Martin Schurz 7b69c4bd47 add collection link
Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com>
2023-04-10 11:21:12 +02:00

16 lines
505 B
YAML

---
- name: wrapper playbook for kitchen testing "ansible-nginx-hardening" with custom settings
become: true
hosts: all
collections:
- devsec.hardening
environment:
http_proxy: "{{ lookup('env', 'http_proxy') | default(omit) }}"
https_proxy: "{{ lookup('env', 'https_proxy') | default(omit) }}"
no_proxy: "{{ lookup('env', 'no_proxy') | default(omit) }}"
vars:
- nginx_ppa_use: true
- nginx_ppa_version: stable
tasks:
- include_role:
name: nginx_hardening