Skip to content

Commit

Permalink
Remove outputs depends
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKotowick committed Sep 10, 2024
1 parent 2d74466 commit e71df1d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,11 @@ locals {
}

output "created" {
depends_on = [
data.external.create_file_chunk,
]
description = "Always `true`, but does not return until the file has been created."
value = local.creation_done
}

output "complete" {
depends_on = [
data.external.create_file_chunk,
data.external.delete_file,
]
description = "Always `true`, but does not return until the file has been created and, if desired, deleted as well."
value = local.creation_done ? local.deletion_done : false
}
Expand Down

0 comments on commit e71df1d

Please sign in to comment.