Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKotowick committed Sep 10, 2024
1 parent 3fe511e commit 53995ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions tests/delete-after.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ module "delete_after" {
filename = "${path.module}/../tmpfiles/delete-after.txt"
content = "hello world"
unix_interpreter = var.unix_interpreter
delete_after = [
// This forces the delete to wait until the first check has occured
module.check_delete_after_exists.checked,
]
# delete_after = [
# // This forces the delete to wait until the first check has occured
# module.check_delete_after_exists.checked,
# ]
}

module "check_delete_after_exists" {
Expand Down
4 changes: 2 additions & 2 deletions tests/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ output "done" {
# module.check_touch.checked,
# module.check_multi_chunk_base64_external.checked,
# module.check_multi_chunk_base64_external_no_change.checked,
module.check_delete_after_exists.checked,
module.check_delete_after_deleted.checked,
# module.check_delete_after_exists.checked,
# module.check_delete_after_deleted.checked,
]) == 0 ? true : true
}

0 comments on commit 53995ba

Please sign in to comment.