From 1a2bd8d5e54111b7b246b7820a2ed4409cba6ef8 Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 8 Nov 2024 11:00:24 -0500 Subject: [PATCH] escape --- tags/tags.legacy.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/tags.legacy.tf b/tags/tags.legacy.tf index f7b3c5e..4168fcb 100644 --- a/tags/tags.legacy.tf +++ b/tags/tags.legacy.tf @@ -16,7 +16,7 @@ resource "terraform_data" "legacy_finops_number" { lifecycle { precondition { - condition = length(regexall("^fs\d{10}$",lookup(local.legacy_finops_converted,"project_number",null))) == 0 + condition = length(regexall("^fs\\d{10}$",lookup(local.legacy_finops_converted,"project_number",null))) == 0 error_message = "Invalid legacy finops project_number format." } }