Skip to content

Commit 2c2e2be

Browse files
committed
updated tests to run the added workflow
1 parent b790689 commit 2c2e2be

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

mmv1/third_party/terraform/services/storage/resource_storage_anywhere_cache_test.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,13 @@ func testAccStorageAnywhereCache_full(context map[string]interface{}) string {
5555
resource "google_storage_bucket" "bucket" {
5656
name = "tf-test-bucket-name%{random_suffix}"
5757
location = "US"
58-
}
59-
60-
resource "time_sleep" "destroy_wait_5000_seconds" {
61-
depends_on = [google_storage_bucket.bucket]
62-
destroy_duration = "5000s"
58+
force_destroy = "true"
6359
}
6460
6561
resource "google_storage_anywhere_cache" "cache" {
6662
bucket = google_storage_bucket.bucket.name
6763
zone = "us-central1-f"
6864
ttl = "3601s"
69-
depends_on = [time_sleep.destroy_wait_5000_seconds]
7065
}
7166
`, context)
7267
}

0 commit comments

Comments
 (0)