mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-15 16:12:35 +00:00
* wrapper: write stdout/stderr data to stream when received * add a delay test * temp comment * uncomment actions * add changelog
11 lines
232 B
HCL
11 lines
232 B
HCL
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]
|
|
}
|