mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-24 20:27:06 +00:00
add a delay test
This commit is contained in:
parent
003aea7b7b
commit
9748105907
2 changed files with 41 additions and 1 deletions
11
.github/workflows/data/delay/main.tf
vendored
Normal file
11
.github/workflows/data/delay/main.tf
vendored
Normal 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]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue