mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 19:24:37 -05:00
13 lines
236 B
HCL
13 lines
236 B
HCL
terraform {
|
|
required_providers {
|
|
local = {
|
|
source = "hashicorp/local"
|
|
version = "2.5.3"
|
|
}
|
|
}
|
|
}
|
|
|
|
output "stuff" {
|
|
value = provider::local::direxists("${path.module}/test-folder") ? "exists" : "does not exist"
|
|
}
|