github.com/mineiros-io/terradoc@v0.0.9-0.20220711062319-018bd4ae81f5/internal/schemas/validationschema/validationschema.go (about) 1 package validationschema 2 3 import "github.com/hashicorp/hcl/v2" 4 5 func RootSchema() *hcl.BodySchema { 6 return &hcl.BodySchema{ 7 Blocks: []hcl.BlockHeaderSchema{ 8 { 9 Type: "variable", 10 LabelNames: []string{"name"}, 11 }, 12 { 13 Type: "output", 14 LabelNames: []string{"name"}, 15 }, 16 }, 17 } 18 }