From d6f9c2a7e4d6f6a0415cd303dbf051f6dfbd7853 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Thu, 16 Nov 2023 12:22:44 -0800 Subject: [PATCH] Fix diun include tags variable This fixes a configuration bug causing diun to include all tags by default. --- services/diun.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/diun.tf b/services/diun.tf index 250c509..9257438 100644 --- a/services/diun.tf +++ b/services/diun.tf @@ -13,7 +13,7 @@ module "diun" { DIUN_PROVIDERS_NOMAD_WATCHBYDEFAULT = true DIUN_DEFAULTS_WATCHREPO = true DIUN_DEFAULTS_SORTTAGS = "semver" - DIUN_DEFAUTLS_INCLUDETAGS = "^\\d+(\\.\\d+){0,2}$" + DIUN_DEFAULTS_INCLUDETAGS = "^\\d+(\\.\\d+){0,2}$" # Nomad API # TODO: Use socket in $NOMAD_SECRETS_DIR/api.sock when we can assign workload ACLs with Terraform to