mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
* implement module testing via TFC * ready for review * fix static checks * licence headers
15 lines
266 B
HCL
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 ]
|
|
}
|