File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ skip_list:
55 - meta-runtime[unsupported-version]
66 - fqcn[action-core]
77 - fqcn[action]
8+ - meta-no-info
Original file line number Diff line number Diff line change @@ -2,10 +2,15 @@ namespace: stackhpc
22name : hashicorp
33description : >
44 Hashicorp Vault/Consul deployment and configuration
5- version : " 2.5.0 "
5+ version : " 2.5.1 "
66readme : " README.md"
77authors :
88 - " Michał Nasiadka"
9+ - " Mark Goddard"
10+ - " Matt Anson"
11+ - " Pierre Riteau"
12+ - " Bartosz Bezak"
13+ - " Kyle Dean"
914dependencies :
1015 " community.docker " : " *"
1116license :
Original file line number Diff line number Diff line change 1414 CONSUL_CLIENT_INTERFACE : " {{ consul_bind_interface }}"
1515 command : >
1616 consul agent
17- -bind "{{ hostvars[inventory_hostname].ansible_facts[consul_bind_interface].ipv4.address }}"
17+ -bind "{{ hostvars[inventory_hostname].ansible_facts[consul_bind_interface | replace('-','_') ].ipv4.address }}"
1818 -data-dir /consul/data
1919 -server
2020 -http-port "{{ consul_bind_port }}"
2121 -bootstrap-expect "{{ ansible_play_hosts | length }}"
2222 {% for host in ansible_play_hosts %}
2323 {% if host != inventory_hostname %}
24- -retry-join "{{ hostvars[host].ansible_facts[consul_bind_interface].ipv4.address }}"
24+ -retry-join "{{ hostvars[host].ansible_facts[consul_bind_interface | replace('-','_') ].ipv4.address }}"
2525 {% endif %}
2626 {% endfor %}
2727 become : true
You can’t perform that action at this time.
0 commit comments