From 474163bc78aa418595b227c81056987b1114104d Mon Sep 17 00:00:00 2001 From: pmikus Date: Thu, 28 Jan 2021 08:47:01 +0000 Subject: [PATCH] Infra: Remove Consul TLS on clients (Nomad conflict) Signed-off-by: pmikus Change-Id: I7c825150a19dd783a255fcc5cbd31b91c6b0b2cf --- .../tools/testbed-setup/ansible/roles/consul/templates/base.hcl.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/tools/testbed-setup/ansible/roles/consul/templates/base.hcl.j2 b/resources/tools/testbed-setup/ansible/roles/consul/templates/base.hcl.j2 index e220c8f687..536c48d847 100644 --- a/resources/tools/testbed-setup/ansible/roles/consul/templates/base.hcl.j2 +++ b/resources/tools/testbed-setup/ansible/roles/consul/templates/base.hcl.j2 @@ -25,11 +25,11 @@ auto_encrypt { } {% else %} verify_incoming = false -verify_outgoing = true -verify_server_hostname = true +verify_outgoing = false +verify_server_hostname = false ca_file = "{{ consul_ca_file }}" auto_encrypt { - tls = true + tls = false } {% endif %} {% if consul_retry_join | bool -%} -- 2.16.6