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:
5
5
- meta-runtime[unsupported-version]
6
6
- fqcn[action-core]
7
7
- fqcn[action]
8
+ - meta-no-info
Original file line number Diff line number Diff line change @@ -2,10 +2,15 @@ namespace: stackhpc
2
2
name : hashicorp
3
3
description : >
4
4
Hashicorp Vault/Consul deployment and configuration
5
- version : " 2.5.0 "
5
+ version : " 2.5.1 "
6
6
readme : " README.md"
7
7
authors :
8
8
- " Michał Nasiadka"
9
+ - " Mark Goddard"
10
+ - " Matt Anson"
11
+ - " Pierre Riteau"
12
+ - " Bartosz Bezak"
13
+ - " Kyle Dean"
9
14
dependencies :
10
15
" community.docker " : " *"
11
16
license :
Original file line number Diff line number Diff line change 14
14
CONSUL_CLIENT_INTERFACE : " {{ consul_bind_interface }}"
15
15
command : >
16
16
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 }}"
18
18
-data-dir /consul/data
19
19
-server
20
20
-http-port "{{ consul_bind_port }}"
21
21
-bootstrap-expect "{{ ansible_play_hosts | length }}"
22
22
{% for host in ansible_play_hosts %}
23
23
{% 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 }}"
25
25
{% endif %}
26
26
{% endfor %}
27
27
become : true
You can’t perform that action at this time.
0 commit comments