From e810c1bedca63a72d51a6b2439d44534cbfcec79 Mon Sep 17 00:00:00 2001 From: cornfeedhobo Date: Sun, 12 Jan 2025 14:49:40 -0600 Subject: [PATCH] allow underscores in names --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index da3e2b4..e5ef255 100644 --- a/main.tf +++ b/main.tf @@ -7,7 +7,7 @@ module "log_group_label" { version = "0.25.0" # Allow forward slashes - regex_replace_chars = "/[^a-zA-Z0-9-\\/]/" + regex_replace_chars = "/[^a-zA-Z0-9-_\\/]/" context = module.this.context }