terraform/internal/cloud/testdata/test-force-cancel/main.tf
Liam Cervante ffbcaf8bef
Implement TFC integration for private module registry test runs (#33710)
* implement module testing via TFC

* ready for review

* fix static checks

* licence headers
2023-09-14 09:01:25 +02:00

15 lines
266 B
HCL

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 ]
}