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"