Skip to content

Commit

Permalink
use force_destroy instead of wait
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerHeber committed Jul 30, 2024
1 parent 8a5d7fe commit 596b183
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ resource "random_string" "random" {
}

resource "env0_project" "project" {
name = "project-environment-output-${random_string.random.result}"
wait = true
name = "project-environment-output-${random_string.random.result}"
force_destroy = true
}

data "env0_environment" "output_environment" {
Expand Down

0 comments on commit 596b183

Please sign in to comment.