mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 03:07:51 -05:00
Signed-off-by: Christian Mesh <christianmesh1@gmail.com> Signed-off-by: James Humphries <james@james-humphries.co.uk> Co-authored-by: James Humphries <james@james-humphries.co.uk>
13 lines
171 B
HCL
13 lines
171 B
HCL
terraform {
|
|
required_providers {
|
|
example = {
|
|
source = "opentofu/testfunctions"
|
|
version = "1.0.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
output "dummy" {
|
|
value = provider::example::error()
|
|
}
|