From cc67b2e5dcab3177102f12e5b25830aeae840e3a Mon Sep 17 00:00:00 2001 From: Lalo Galvan <106835113+lalo-galvan@users.noreply.github.com> Date: Tue, 13 Aug 2024 03:50:37 -0600 Subject: [PATCH] fix syntax error --- synthetics/browser/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthetics/browser/main.tf b/synthetics/browser/main.tf index 83366a8..cc0204f 100644 --- a/synthetics/browser/main.tf +++ b/synthetics/browser/main.tf @@ -39,7 +39,7 @@ resource "datadog_synthetics_test" "browser" { email = lookup(browser_step.value.params, "email", null) file = lookup(browser_step.value.params, "file", null) files = lookup(browser_step.value.params, "files", null) - modifiers = lookup(browser_step.value.params, "modifiers", [""]) + modifiers = lookup(browser_step.value.params, "modifiers", []) playing_tab_id = lookup(browser_step.value.params, "playing_tab_id", null) request = lookup(browser_step.value.params, "request", null) subtest_public_id = lookup(browser_step.value.params, "subtest_public_id", null)