From 169a91e47062e5eacc28352d6409a8a653a918e9 Mon Sep 17 00:00:00 2001 From: Kyle Kotowick Date: Tue, 10 Sep 2024 16:01:11 -0400 Subject: [PATCH] Update delete-after.tf --- tests/delete-after.tf | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/delete-after.tf b/tests/delete-after.tf index 8a10cc2..4ec06b3 100644 --- a/tests/delete-after.tf +++ b/tests/delete-after.tf @@ -6,7 +6,6 @@ module "delete_after" { delete_after = [ // This forces the delete to wait until the first check has occured module.check_delete_after_exists.checked, - uuid() ] } @@ -19,9 +18,6 @@ module "check_delete_after_exists" { error_message = "delete-after (exists): expected file to exist, but it does not" } -resource "terraform_data" "bootstrap" { - input = module.delete_after.complete -} module "check_delete_after_deleted" { source = "../assertion" # source = "Invicton-Labs/assertion/null"