mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
12 lines
143 B
HCL
12 lines
143 B
HCL
terraform {
|
|
required_providers {
|
|
test = {
|
|
source = "test"
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
output "value" {
|
|
value = provider::test::is_true(true)
|
|
}
|