You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/cloud/testdata/test-cancel/main.tf

16 lines
266 B

variable "input" {
type = string
default = "Hello, world!"
}
resource "time_sleep" "wait_5_seconds" {
create_duration = "5s"
}
resource "tfcoremock_simple_resource" "resource" {
string = var.input
depends_on = [ time_sleep.wait_5_seconds ]
}