mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 18:33:08 -04:00
18 lines
234 B
HCL
18 lines
234 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
variable "delay" {
|
|
type = number
|
|
default = 0
|
|
}
|
|
|
|
resource "test_resource" "foo" {
|
|
create_wait_seconds = var.delay
|
|
value = var.input
|
|
}
|
|
|
|
output "value" {
|
|
value = test_resource.foo.value
|
|
}
|