We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b790689 commit d5b0823Copy full SHA for d5b0823
mmv1/third_party/terraform/services/storage/resource_storage_anywhere_cache_test.go
@@ -57,16 +57,10 @@ resource "google_storage_bucket" "bucket" {
57
location = "US"
58
}
59
60
-resource "time_sleep" "destroy_wait_5000_seconds" {
61
- depends_on = [google_storage_bucket.bucket]
62
- destroy_duration = "5000s"
63
-}
64
-
65
resource "google_storage_anywhere_cache" "cache" {
66
bucket = google_storage_bucket.bucket.name
67
zone = "us-central1-f"
68
ttl = "3601s"
69
- depends_on = [time_sleep.destroy_wait_5000_seconds]
70
71
`, context)
72
0 commit comments