mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-08 22:00:10 -04:00
28 lines
391 B
Go
28 lines
391 B
Go
package parse
|
|
|
|
import "github.com/hashicorp/hcl/v2"
|
|
|
|
var ConnectionBlockSchema = &hcl.BodySchema{
|
|
Attributes: []hcl.AttributeSchema{
|
|
{
|
|
Name: "plugin",
|
|
Required: true,
|
|
},
|
|
{
|
|
Name: "type",
|
|
},
|
|
{
|
|
Name: "connections",
|
|
},
|
|
{
|
|
Name: "import_schema",
|
|
},
|
|
},
|
|
Blocks: []hcl.BlockHeaderSchema{
|
|
{
|
|
Type: "options",
|
|
LabelNames: []string{"type"},
|
|
},
|
|
},
|
|
}
|