nomad/ansible/templates/consul.hcl.j2
2023-03-18 13:13:16 +00:00

33 lines
1.1 KiB
Django/Jinja

datacenter = "{{ nomad_datacenter_name }}"
data_dir = "/opt/consul"
encrypt = "{{ consul_generated_encrypt_key }}"
verify_incoming = true
verify_outgoing = true
verify_server_hostname = true
bind_addr = "{% raw %}{{ GetPrivateInterfaces | include \"network\" \"10.0.0.0/8\" | attr \"address\" }}{% endraw %}"
client_addr = "0.0.0.0"
ca_file = "/etc/consul.d/consul-agent-ca.pem"
cert_file = "/etc/consul.d/{{ nomad_datacenter_name }}-server-consul-0.pem"
key_file = "/etc/consul.d/{{ nomad_datacenter_name }}-server-consul-0-key.pem"
auto_encrypt {
allow_tls = true
}
# This ugly line is to get the IP addresses of the other consul servers, excluding the current host.
# Consul cannot join itself, so we need to exclude the current host.
retry_join = ["{{ groups.nomad|difference([inventory_hostname])| map('extract', hostvars, ['ansible_host'])|join('","') }}"]
acl {
enabled = false
default_policy = "allow"
enable_token_persistence = true
}
performance {
raft_multiplier = 1
}
# TODO: change once DNS is running on a host
recursors = ["10.10.0.1"] # adds DNS forwarding for non-`.consul` domains