chore!: separated galaxy deps and own collections; modified ansible script generation to use two paths for collections

REQUIRES REGENERATING ansible.cfg!
This commit is contained in:
NaeiKinDus 2025-02-23 00:00:00 +00:00
parent 4af69c31ce
commit 888590ed9f
Signed by: WoodSmellParticle
GPG key ID: 8E52ADFF7CA8AE56
188 changed files with 30 additions and 30 deletions

View file

@ -0,0 +1,14 @@
---
- name: install firewall rules
become: true
ansible.builtin.template:
src: ../templates/vault.nft.j2
dest: /etc/nftables.d/vault.nft
mode: '0600'
owner: root
group: root
vars:
firewall_lb_ips: '{{ hc_vault_security_lb_ips | default({}, True) }}'
firewall_cluster_nodes_ips: '{{ hc_vault_security_cluster_nodes | default({}, True) }}'
notify:
- 'vault : load firewall rules'