From 60e97c68c8d42cb5af898ce1331a9cda7024e058 Mon Sep 17 00:00:00 2001 From: env0-bot Date: Tue, 25 Jun 2024 10:32:23 +0300 Subject: [PATCH] add force destroy --- tests/integration/013_downstream_environments/main.tf | 1 + tests/integration/014_environment_scheduling/main.tf | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/integration/013_downstream_environments/main.tf b/tests/integration/013_downstream_environments/main.tf index 125e8f68..c3cfb077 100644 --- a/tests/integration/013_downstream_environments/main.tf +++ b/tests/integration/013_downstream_environments/main.tf @@ -8,6 +8,7 @@ resource "env0_project" "test_project" { name = "Test-Project-${random_string.random.result}" description = "Test Description ${var.second_run ? "after update" : ""}" wait = true + force_destroy = true } resource "env0_template" "template" { diff --git a/tests/integration/014_environment_scheduling/main.tf b/tests/integration/014_environment_scheduling/main.tf index 8da51da3..8fd55bd3 100644 --- a/tests/integration/014_environment_scheduling/main.tf +++ b/tests/integration/014_environment_scheduling/main.tf @@ -7,6 +7,7 @@ resource "random_string" "random" { resource "env0_project" "test_project" { name = "Test-Project-for-environment-scheduling-${random_string.random.result}" wait = true + force_destroy = true } resource "env0_template" "template" {