Documentation ¶
Index ¶
- Constants
- type Converter
- type Parser
- func (p *Parser) GetCommentToken() string
- func (p *Parser) GetKind() model.FileKind
- func (p *Parser) GetResolvedFiles() map[string]model.ResolvedFile
- func (p *Parser) Parse(path string, content []byte) ([]model.Document, []int, error)
- func (p *Parser) Resolve(fileContent []byte, filename string) ([]byte, error)
- func (p *Parser) StringifyContent(content []byte) (string, error)
- func (p *Parser) SupportedExtensions() []string
- func (p *Parser) SupportedTypes() map[string]bool
Constants ¶
const RetriesDefaultValue = 50
RetriesDefaultValue is default number of times a parser will retry to execute
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Converter ¶
type Converter func(file *hcl.File, inputVariables converter.VariableMap) (model.Document, error)
Converter returns content json, error line, error
type Parser ¶
type Parser struct {
// contains filtered or unexported fields
}
Parser struct that contains the function to parse file and the number of retries if something goes wrong
func NewDefault ¶
func NewDefault() *Parser
NewDefault initializes a parser with Parser default values
func (*Parser) GetCommentToken ¶ added in v1.4.1
GetCommentToken return the comment token of Terraform - #
func (*Parser) GetResolvedFiles ¶ added in v1.5.9
func (p *Parser) GetResolvedFiles() map[string]model.ResolvedFile
GetResolvedFiles returns the files that are resolved
func (*Parser) Resolve ¶ added in v1.2.2
Resolve - replace or modifies in-memory content before parsing
func (*Parser) StringifyContent ¶ added in v1.4.6
StringifyContent converts original content into string formated version
func (*Parser) SupportedExtensions ¶
SupportedExtensions returns Terraform extensions
func (*Parser) SupportedTypes ¶ added in v1.1.3
SupportedTypes returns types supported by this parser, which are terraform