moved var-combining to separate file

This commit is contained in:
AnsibleGuy 2023-05-13 16:25:53 +02:00
parent 991a61ad1f
commit a5195642c2
No known key found for this signature in database
GPG Key ID: 52984C069F5AD3CD
2 changed files with 3 additions and 2 deletions

View File

@ -92,6 +92,4 @@ defaults_apache:
security:
restricted_methods: ['GET', 'POST', 'HEAD']
APACHE_CONFIG: "{{ defaults_apache | combine(apache, recursive=true) }}"
debug: false

View File

@ -0,0 +1,3 @@
---
APACHE_CONFIG: "{{ defaults_apache | combine(apache, recursive=true) }}"