add a delay test

This commit is contained in:
Austin Valle 2024-04-25 10:38:22 -04:00
parent 003aea7b7b
commit 9748105907
2 changed files with 41 additions and 1 deletions

11
.github/workflows/data/delay/main.tf vendored Normal file
View file

@ -0,0 +1,11 @@
resource "null_resource" "previous" {}
resource "time_sleep" "wait_30_seconds" {
depends_on = [null_resource.previous]
create_duration = "30s"
}
resource "null_resource" "next" {
depends_on = [time_sleep.wait_30_seconds]
}