rename host_groups to append_groups

This commit is contained in:
ace 2022-09-09 13:10:33 +03:00
parent c06334e393
commit 92dcddb528
No known key found for this signature in database
GPG Key ID: E805F7888C3ED7C0
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ Inventory example:
cacert_group_certs:
- name: mygroupcert
host_groups:
append_groups:
- consul
- patroni
hosts:

View File

@ -4,7 +4,7 @@
- name: Generate subject_alt_ips
set_fact:
client_subject_alt_ips: "{{ groups[group_item] | map('extract', hostvars, ['ansible_host']) | map('regex_replace', '^', 'IP:') | list }}"
loop: "{{ item.host_groups }}"
loop: "{{ item.append_groups }}"
loop_control:
loop_var: group_item
when:
@ -16,7 +16,7 @@
- name: Generate subject_alt_names
set_fact:
client_subject_alt_names: "{{ groups[group_item] | map('extract', hostvars, ['inventory_hostname']) | map('regex_replace', '^', 'DNS:') | list }}"
loop: "{{ item.host_groups }}"
loop: "{{ item.append_groups }}"
loop_control:
loop_var: group_item
when: