From 32f5f2c3a56d9b6e22534b82c9fc27502ff1cff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 27 Sep 2023 10:08:30 +0200 Subject: [PATCH] consul: add missing service ID and port MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- tasks/consul.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/consul.yml b/tasks/consul.yml index c50671b..1937ce6 100644 --- a/tasks/consul.yml +++ b/tasks/consul.yml @@ -5,8 +5,10 @@ consul_config_name: '{{ github_webhook_service_name }}' consul_services: - name: '{{ github_webhook_service_name }}' - tags: ['{{ github_webhook_service_user }}', 'github', 'webhook'] + id: '{{ github_webhook_service_name }}' + port: '{{ github_webhook_port }}' address: '{{ ansible_local.wireguard.vpn_ip }}' + tags: ['{{ github_webhook_service_user }}', 'github', 'webhook'] checks: - id: '{{ github_webhook_service_name }}-health' name: ' {{ github_webhook_service_user }} GitHub Webhook check'