opentofu/configs/module_call.go
Martin Atkins 13fa73c63e configs: stub out main configuration structs
These types represent the individual elements within configuration, the
modules a configuration is made of, and the configuration (static module
tree) itself.
2018-02-15 15:56:37 -08:00

19 lines
294 B
Go

package configs
import (
"github.com/hashicorp/hcl2/hcl"
)
// ModuleCall represents a "module" block in a module or file.
type ModuleCall struct {
Source string
SourceRange hcl.Range
Version VersionConstraint
Count hcl.Expression
ForEach hcl.Expression
DeclRange hcl.Range
}