From 8694e94874e9618a55a7325909de356add55ff13 Mon Sep 17 00:00:00 2001 From: Simon J <58431697+simonrdz@users.noreply.github.com> Date: Wed, 16 Apr 2025 12:58:10 +0200 Subject: [PATCH] chore(synthetics): ignore changes for request_basicauth --- modules/synthetics/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/synthetics/main.tf b/modules/synthetics/main.tf index 56305eb..114688b 100644 --- a/modules/synthetics/main.tf +++ b/modules/synthetics/main.tf @@ -32,6 +32,11 @@ resource "datadog_synthetics_test" "default" { status = each.value.status type = each.value.type + # Ignore not supported properties + lifecycle { + ignore_changes = [ request_basicauth ] + } + # Optional ######## Beginning of API step ########