github.com/opentofu/opentofu@v1.7.1/internal/command/e2etest/testdata/functions/main.tf (about)

     1  terraform {
     2  	required_providers {
     3  		example = {
     4  			source = "opentofu/testfunctions"
     5  			version = "1.0.0"
     6  		}
     7  	}
     8  }
     9  
    10  output "dummy" {
    11  	value = provider::example::echo("Hello Functions")
    12  }