mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-03 20:50:59 -05:00
* terraform test: check specific dependencies before skipping run blocks * fix data race * complete comment
11 lines
147 B
HCL
11 lines
147 B
HCL
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "foo" {
|
|
value = var.input
|
|
}
|
|
|
|
output "value" {
|
|
value = test_resource.foo.value
|
|
}
|