Documentation ¶
Index ¶
- Variables
- func AddReferences(resource modconfig.HclResource, block *hcl.Block, parseCtx *ModParseContext) hcl.Diagnostics
- func DecodeConnection(block *hcl.Block) (*modconfig.Connection, hcl.Diagnostics)
- func DecodeCredential(configPath string, block *hcl.Block) (modconfig.Credential, hcl.Diagnostics)
- func DecodeLimiter(block *hcl.Block) (*modconfig.RateLimiter, hcl.Diagnostics)
- func DecodeOptions(block *hcl.Block, blockFactory modconfig.OptionsBlockFactory) (options.Options, hcl.Diagnostics)
- func DecodePlugin(block *hcl.Block) (*modconfig.Plugin, hcl.Diagnostics)
- func GetIntegrationBlockSchema(triggerType string) *hcl.BodySchema
- func GetMetadataForParsedResource(resourceName string, srcRange hcl.Range, fileData map[string][]byte, ...) (*modconfig.ResourceMetadata, error)
- func GetPipelineStepBlockSchema(stepType string) *hcl.BodySchema
- func GetTriggerBlockSchema(triggerType string) *hcl.BodySchema
- func LoadFileData(paths ...string) (map[string][]byte, hcl.Diagnostics)
- func LoadModfile(modPath string) (*modconfig.Mod, error)
- func LoadWorkspaceProfiles[T modconfig.WorkspaceProfile](workspaceProfilePath string) (profileMap map[string]T, err error)
- func ModfileExists(modPath string) bool
- func ParseHclFiles(fileData map[string][]byte) (hcl.Body, hcl.Diagnostics)
- func ParseMod(ctx context.Context, fileData map[string][]byte, ...) (*modconfig.Mod, *error_helpers.ErrorAndWarnings)
- func ParseModResourceNames(fileData map[string][]byte) (*modconfig.WorkspaceResources, error)
- func ParseQueryInvocation(arg string) (string, *modconfig.QueryArgs, error)
- func VariableValueCtyMap(variables map[string]*modconfig.Variable) map[string]cty.Value
- type DecodeResult
- type InstalledMod
- type ModDependencyConfig
- type ModParseContext
- func (m *ModParseContext) AddDependencies(block *hcl.Block, name string, ...) hcl.Diagnostics
- func (m *ModParseContext) AddInputVariableValues(inputVariables *modconfig.ModVariableMap)
- func (m *ModParseContext) AddLoadedDependencyMod(mod *modconfig.Mod)
- func (m *ModParseContext) AddModResources(mod *modconfig.Mod) hcl.Diagnostics
- func (m *ModParseContext) AddPipeline(pipelineHcl *modconfig.Pipeline) hcl.Diagnostics
- func (m *ModParseContext) AddResource(resource modconfig.HclResource) hcl.Diagnostics
- func (m *ModParseContext) AddTrigger(trigger *modconfig.Trigger) hcl.Diagnostics
- func (m *ModParseContext) AddVariablesToEvalContext()
- func (m *ModParseContext) CreatePseudoResources() bool
- func (m *ModParseContext) DetermineBlockName(block *hcl.Block) string
- func (m *ModParseContext) EnsureWorkspaceLock(mod *modconfig.Mod) error
- func (m *ModParseContext) GetCachedBlockName(block *hcl.Block) (string, bool)
- func (m *ModParseContext) GetCachedBlockShortName(block *hcl.Block) (string, bool)
- func (m *ModParseContext) GetDecodedResourceForBlock(block *hcl.Block) (modconfig.HclResource, bool)
- func (m *ModParseContext) GetMod(modShortName string) *modconfig.Mod
- func (m *ModParseContext) GetResource(parsedName *modconfig.ParsedResourceName) (resource modconfig.HclResource, found bool)
- func (m *ModParseContext) GetResourceMaps() *modconfig.ResourceMaps
- func (m *ModParseContext) GetTopLevelDependencyMods() modconfig.ModMap
- func (m *ModParseContext) IsTopLevelBlock(block *hcl.Block) bool
- func (m *ModParseContext) PeekParent() string
- func (m *ModParseContext) PopParent() string
- func (m *ModParseContext) PushParent(parent modconfig.ModTreeItem)
- func (m *ModParseContext) SetCurrentMod(mod *modconfig.Mod) error
- func (m *ModParseContext) SetDecodeContent(content *hcl.BodyContent, fileData map[string][]byte)
- func (m *ModParseContext) ShouldCreateCreateTransientLocalMod() bool
- func (m *ModParseContext) ShouldCreateDefaultMod() bool
- type ParseContext
- func (r *ParseContext) AddDependencies(block *hcl.Block, name string, ...) hcl.Diagnostics
- func (r *ParseContext) BlocksToDecode() (hcl.Blocks, error)
- func (r *ParseContext) BuildEvalContext(variables map[string]cty.Value)
- func (r *ParseContext) ClearDependencies()
- func (r *ParseContext) EvalComplete() bool
- func (r *ParseContext) FormatDependencies() string
- func (r *ParseContext) SetDecodeContent(content *hcl.BodyContent, fileData map[string][]byte)
- func (r *ParseContext) ShouldIncludeBlock(block *hcl.Block) bool
- type ParseModFlag
- type ReferenceTypeValueMap
- type WorkspaceProfileParseContext
Constants ¶
This section is empty.
Variables ¶
var BenchmarkBlockSchema = &hcl.BodySchema{
Attributes: []hcl.AttributeSchema{
{Name: "children"},
{Name: "description"},
{Name: "documentation"},
{Name: "tags"},
{Name: "title"},
{Name: "width"},
{Name: "base"},
{Name: "type"},
{Name: "display"},
},
}
var ConfigBlockSchema = &hcl.BodySchema{ Attributes: []hcl.AttributeSchema{}, Blocks: []hcl.BlockHeaderSchema{ { Type: schema.BlockTypeConnection, LabelNames: []string{"name"}, }, { Type: schema.BlockTypePlugin, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeOptions, LabelNames: []string{"type"}, }, { Type: schema.BlockTypeWorkspaceProfile, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeCredential, LabelNames: []string{schema.LabelType, schema.LabelName}, }, }, }
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"}, }, }, }
var DashboardBlockSchema = &hcl.BodySchema{ Blocks: []hcl.BlockHeaderSchema{ { Type: schema.BlockTypeInput, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeParam, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeWith, }, { Type: schema.BlockTypeContainer, }, { Type: schema.BlockTypeCard, }, { Type: schema.BlockTypeChart, }, { Type: schema.BlockTypeBenchmark, }, { Type: schema.BlockTypeControl, }, { Type: schema.BlockTypeFlow, }, { Type: schema.BlockTypeGraph, }, { Type: schema.BlockTypeHierarchy, }, { Type: schema.BlockTypeImage, }, { Type: schema.BlockTypeTable, }, { Type: schema.BlockTypeText, }, }, }
DashboardBlockSchema is only used to validate the blocks of a Dashboard
var DashboardContainerBlockSchema = &hcl.BodySchema{ Blocks: []hcl.BlockHeaderSchema{ { Type: schema.BlockTypeInput, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeParam, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeContainer, }, { Type: schema.BlockTypeCard, }, { Type: schema.BlockTypeChart, }, { Type: schema.BlockTypeBenchmark, }, { Type: schema.BlockTypeControl, }, { Type: schema.BlockTypeFlow, }, { Type: schema.BlockTypeGraph, }, { Type: schema.BlockTypeHierarchy, }, { Type: schema.BlockTypeImage, }, { Type: schema.BlockTypeTable, }, { Type: schema.BlockTypeText, }, }, }
DashboardContainerBlockSchema is only used to validate the blocks of a DashboardContainer
var NodeAndEdgeProviderSchema = &hcl.BodySchema{ Attributes: []hcl.AttributeSchema{ {Name: "args"}, }, Blocks: []hcl.BlockHeaderSchema{ { Type: "param", LabelNames: []string{"name"}, }, { Type: "category", LabelNames: []string{"name"}, }, { Type: "with", LabelNames: []string{"name"}, }, { Type: schema.BlockTypeNode, }, { Type: schema.BlockTypeEdge, }, }, }
NodeAndEdgeProviderSchema is used to decode graph/hierarchy/flow (EXCEPT categories)
var ParamDefBlockSchema = &hcl.BodySchema{
Attributes: []hcl.AttributeSchema{
{Name: "description"},
{Name: "default"},
},
}
var PluginBlockSchema = &hcl.BodySchema{ Attributes: []hcl.AttributeSchema{}, Blocks: []hcl.BlockHeaderSchema{ { Type: schema.BlockTypeRateLimiter, LabelNames: []string{"name"}, }, }, }
var QueryProviderBlockSchema = &hcl.BodySchema{ Attributes: []hcl.AttributeSchema{ {Name: "args"}, }, Blocks: []hcl.BlockHeaderSchema{ { Type: "param", LabelNames: []string{"name"}, }, { Type: "with", LabelNames: []string{"name"}, }, }, }
QueryProviderBlockSchema schema for all blocks satisfying QueryProvider interface NOTE: these are just the blocks/attributes that are explicitly decoded other query provider properties are implicitly decoded using tags
var VariableBlockSchema = &hcl.BodySchema{
Attributes: []hcl.AttributeSchema{
{
Name: "description",
},
{
Name: "default",
},
{
Name: "type",
},
{
Name: "sensitive",
},
},
Blocks: []hcl.BlockHeaderSchema{
{
Type: "validation",
},
},
}
var WorkspaceBlockSchema = &hcl.BodySchema{ Attributes: []hcl.AttributeSchema{}, Blocks: []hcl.BlockHeaderSchema{ { Type: string(schema.BlockTypeMod), LabelNames: []string{"name"}, }, { Type: schema.BlockTypeVariable, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeQuery, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeControl, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeBenchmark, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeDashboard, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeCard, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeChart, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeFlow, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeGraph, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeHierarchy, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeImage, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeInput, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeTable, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeText, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeNode, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeEdge, LabelNames: []string{"name"}, }, { Type: schema.BlockTypeLocals, }, { Type: schema.BlockTypeCategory, LabelNames: []string{"name"}, }, { Type: schema.BlockTypePipeline, LabelNames: []string{schema.LabelName}, }, { Type: schema.BlockTypeTrigger, LabelNames: []string{schema.LabelType, schema.LabelName}, }, { Type: schema.BlockTypeIntegration, LabelNames: []string{schema.LabelType, schema.LabelName}, }, }, }
WorkspaceBlockSchema is the top level schema for all workspace resources
var WorkspaceProfileBlockSchema = &hcl.BodySchema{ Blocks: []hcl.BlockHeaderSchema{ { Type: "options", LabelNames: []string{"type"}, }, }, }
Functions ¶
func AddReferences ¶
func AddReferences(resource modconfig.HclResource, block *hcl.Block, parseCtx *ModParseContext) hcl.Diagnostics
AddReferences populates the 'References' resource field, used for the introspection tables
func DecodeConnection ¶
func DecodeConnection(block *hcl.Block) (*modconfig.Connection, hcl.Diagnostics)
func DecodeCredential ¶
func DecodeCredential(configPath string, block *hcl.Block) (modconfig.Credential, hcl.Diagnostics)
func DecodeLimiter ¶
func DecodeLimiter(block *hcl.Block) (*modconfig.RateLimiter, hcl.Diagnostics)
func DecodeOptions ¶
func DecodeOptions(block *hcl.Block, blockFactory modconfig.OptionsBlockFactory) (options.Options, hcl.Diagnostics)
DecodeOptions decodes an options block
func DecodePlugin ¶
func GetIntegrationBlockSchema ¶
func GetIntegrationBlockSchema(triggerType string) *hcl.BodySchema
func GetPipelineStepBlockSchema ¶
func GetPipelineStepBlockSchema(stepType string) *hcl.BodySchema
func GetTriggerBlockSchema ¶
func GetTriggerBlockSchema(triggerType string) *hcl.BodySchema
func LoadFileData ¶
LoadFileData builds a map of filepath to file data
func LoadWorkspaceProfiles ¶
func LoadWorkspaceProfiles[T modconfig.WorkspaceProfile](workspaceProfilePath string) (profileMap map[string]T, err error)
func ModfileExists ¶
ModfileExists returns whether a mod file exists at the specified path
func ParseHclFiles ¶
ParseHclFiles parses hcl file data and returns the hcl body object
func ParseMod ¶
func ParseMod(ctx context.Context, fileData map[string][]byte, pseudoResources []modconfig.MappableResource, parseCtx *ModParseContext) (*modconfig.Mod, *error_helpers.ErrorAndWarnings)
ParseMod parses all source hcl files for the mod path and associated resources, and returns the mod object NOTE: the mod definition has already been parsed (or a default created) and is in opts.RunCtx.RootMod
func ParseModResourceNames ¶
func ParseModResourceNames(fileData map[string][]byte) (*modconfig.WorkspaceResources, error)
ParseModResourceNames parses all source hcl files for the mod path and associated resources, and returns the resource names
func ParseQueryInvocation ¶
ParseQueryInvocation parses a query invocation and extracts the args (if any) supported formats are:
1) positional args query.my_prepared_statement('val1','val1')
2) named args query.my_prepared_statement(my_arg1 => 'test', my_arg2 => 'test2')
Types ¶
type DecodeResult ¶
type DecodeResult struct { Diags hcl.Diagnostics Depends map[string]*modconfig.ResourceDependency }
struct to hold the result of a decoding operation
func ParseModDefinition ¶
func ParseModDefinition(modPath string, evalCtx *hcl.EvalContext) (*modconfig.Mod, *DecodeResult)
ParseModDefinition parses the modfile only it is expected the calling code will have verified the existence of the modfile by calling ModfileExists this is called before parsing the workspace to, for example, identify dependency mods
This function only parse the "mod" block, and does not parse any resources in the mod file
func ParseModDefinitionWithFileName ¶
func ParseModDefinitionWithFileName(modPath string, modFileName string, evalCtx *hcl.EvalContext) (*modconfig.Mod, *DecodeResult)
func (*DecodeResult) Merge ¶
func (p *DecodeResult) Merge(other *DecodeResult) *DecodeResult
Merge merges this decode result with another
func (*DecodeResult) Success ¶
func (p *DecodeResult) Success() bool
Success returns if the was parsing successful - true if there are no errors and no dependencies
type InstalledMod ¶
type ModDependencyConfig ¶
type ModDependencyConfig struct { ModDependency *versionmap.ResolvedVersionConstraint DependencyPath *string }
func NewDependencyConfig ¶
func NewDependencyConfig(modDependency *versionmap.ResolvedVersionConstraint) *ModDependencyConfig
func (ModDependencyConfig) SetModProperties ¶
func (c ModDependencyConfig) SetModProperties(mod *modconfig.Mod)
type ModParseContext ¶
type ModParseContext struct { ParseContext // PipelineHcls map[string]*modconfig.Pipeline TriggerHcls map[string]*modconfig.Trigger IntegrationHcls map[string]modconfig.Integration // the mod which is currently being parsed CurrentMod *modconfig.Mod // the workspace lock data WorkspaceLock *versionmap.WorkspaceLock Flags ParseModFlag ListOptions *filehelpers.ListOptions // Variables is a tree of maps of the variables in the current mod and child dependency mods Variables *modconfig.ModVariableMap // Credentials are something different, it's not part of the mod, it's not part of the workspace, it is at the same level // with mod and workspace. However it can be reference by the mod, so it needs to be in the parse context Credentials map[string]modconfig.Credential ParentParseCtx *ModParseContext // if we are loading dependency mod, this contains the details DependencyConfig *ModDependencyConfig // contains filtered or unexported fields }
func NewChildModParseContext ¶
func NewChildModParseContext(parent *ModParseContext, modVersion *versionmap.ResolvedVersionConstraint, rootEvalPath string) *ModParseContext
func NewModParseContext ¶
func NewModParseContext(workspaceLock *versionmap.WorkspaceLock, rootEvalPath string, flags ParseModFlag, listOptions *filehelpers.ListOptions) *ModParseContext
func (*ModParseContext) AddDependencies ¶
func (m *ModParseContext) AddDependencies(block *hcl.Block, name string, dependencies map[string]*modconfig.ResourceDependency) hcl.Diagnostics
AddDependencies :: the block could not be resolved as it has dependencies 1) store block as unresolved 2) add dependencies to our tree of dependencies
func (*ModParseContext) AddInputVariableValues ¶
func (m *ModParseContext) AddInputVariableValues(inputVariables *modconfig.ModVariableMap)
AddInputVariableValues adds evaluated variables to the run context. This function is called for the root run context after loading all input variables
func (*ModParseContext) AddLoadedDependencyMod ¶
func (m *ModParseContext) AddLoadedDependencyMod(mod *modconfig.Mod)
func (*ModParseContext) AddModResources ¶
func (m *ModParseContext) AddModResources(mod *modconfig.Mod) hcl.Diagnostics
AddModResources is used to add mod resources to the eval context
func (*ModParseContext) AddPipeline ¶
func (m *ModParseContext) AddPipeline(pipelineHcl *modconfig.Pipeline) hcl.Diagnostics
TODO: transition period AddPipeline stores this resource as a variable to be added to the eval context. It alse
func (*ModParseContext) AddResource ¶
func (m *ModParseContext) AddResource(resource modconfig.HclResource) hcl.Diagnostics
AddResource stores this resource as a variable to be added to the eval context.
func (*ModParseContext) AddTrigger ¶
func (m *ModParseContext) AddTrigger(trigger *modconfig.Trigger) hcl.Diagnostics
func (*ModParseContext) AddVariablesToEvalContext ¶
func (m *ModParseContext) AddVariablesToEvalContext()
func (*ModParseContext) CreatePseudoResources ¶
func (m *ModParseContext) CreatePseudoResources() bool
CreatePseudoResources returns whether the flag is set to create pseudo resources
func (*ModParseContext) DetermineBlockName ¶
func (m *ModParseContext) DetermineBlockName(block *hcl.Block) string
func (*ModParseContext) EnsureWorkspaceLock ¶
func (m *ModParseContext) EnsureWorkspaceLock(mod *modconfig.Mod) error
func (*ModParseContext) GetCachedBlockName ¶
func (m *ModParseContext) GetCachedBlockName(block *hcl.Block) (string, bool)
func (*ModParseContext) GetCachedBlockShortName ¶
func (m *ModParseContext) GetCachedBlockShortName(block *hcl.Block) (string, bool)
func (*ModParseContext) GetDecodedResourceForBlock ¶
func (m *ModParseContext) GetDecodedResourceForBlock(block *hcl.Block) (modconfig.HclResource, bool)
func (*ModParseContext) GetMod ¶
func (m *ModParseContext) GetMod(modShortName string) *modconfig.Mod
GetMod finds the mod with given short name, looking only in first level dependencies this is used to resolve resource references specifically when the 'children' property of dashboards and benchmarks refers to resource in a dependency mod
func (*ModParseContext) GetResource ¶
func (m *ModParseContext) GetResource(parsedName *modconfig.ParsedResourceName) (resource modconfig.HclResource, found bool)
func (*ModParseContext) GetResourceMaps ¶
func (m *ModParseContext) GetResourceMaps() *modconfig.ResourceMaps
func (*ModParseContext) GetTopLevelDependencyMods ¶
func (m *ModParseContext) GetTopLevelDependencyMods() modconfig.ModMap
GetTopLevelDependencyMods build a mod map of top level loaded dependencies, keyed by mod name
func (*ModParseContext) IsTopLevelBlock ¶
func (m *ModParseContext) IsTopLevelBlock(block *hcl.Block) bool
func (*ModParseContext) PeekParent ¶
func (m *ModParseContext) PeekParent() string
func (*ModParseContext) PopParent ¶
func (m *ModParseContext) PopParent() string
func (*ModParseContext) PushParent ¶
func (m *ModParseContext) PushParent(parent modconfig.ModTreeItem)
func (*ModParseContext) SetCurrentMod ¶
func (m *ModParseContext) SetCurrentMod(mod *modconfig.Mod) error
func (*ModParseContext) SetDecodeContent ¶
func (m *ModParseContext) SetDecodeContent(content *hcl.BodyContent, fileData map[string][]byte)
func (*ModParseContext) ShouldCreateCreateTransientLocalMod ¶
func (m *ModParseContext) ShouldCreateCreateTransientLocalMod() bool
func (*ModParseContext) ShouldCreateDefaultMod ¶
func (m *ModParseContext) ShouldCreateDefaultMod() bool
ShouldCreateDefaultMod returns whether the flag is set to create a default mod if no mod definition exists
type ParseContext ¶
type ParseContext struct { UnresolvedBlocks map[string]*unresolvedBlock FileData map[string][]byte // the eval context used to decode references in HCL EvalCtx *hcl.EvalContext Diags hcl.Diagnostics RootEvalPath string // if set, only decode these blocks BlockTypes []string // if set, exclude these block types BlockTypeExclusions []string // contains filtered or unexported fields }
func NewParseContext ¶
func NewParseContext(rootEvalPath string) ParseContext
func (*ParseContext) AddDependencies ¶
func (r *ParseContext) AddDependencies(block *hcl.Block, name string, dependencies map[string]*modconfig.ResourceDependency) hcl.Diagnostics
AddDependencies is called when a block could not be resolved as it has dependencies 1) store block as unresolved 2) add dependencies to our tree of dependencies
func (*ParseContext) BlocksToDecode ¶
func (r *ParseContext) BlocksToDecode() (hcl.Blocks, error)
BlocksToDecode builds a list of blocks to decode, the order of which is determined by the dependency order
func (*ParseContext) BuildEvalContext ¶
func (r *ParseContext) BuildEvalContext(variables map[string]cty.Value)
eval functions
func (*ParseContext) ClearDependencies ¶
func (r *ParseContext) ClearDependencies()
func (*ParseContext) EvalComplete ¶
func (r *ParseContext) EvalComplete() bool
EvalComplete returns whether all elements in the dependency tree fully evaluated
func (*ParseContext) FormatDependencies ¶
func (r *ParseContext) FormatDependencies() string
func (*ParseContext) SetDecodeContent ¶
func (r *ParseContext) SetDecodeContent(content *hcl.BodyContent, fileData map[string][]byte)
func (*ParseContext) ShouldIncludeBlock ¶
func (r *ParseContext) ShouldIncludeBlock(block *hcl.Block) bool
type ParseModFlag ¶
type ParseModFlag uint32
const ( CreateDefaultMod ParseModFlag = 1 << iota CreatePseudoResources CreateTransientLocalMod )
type ReferenceTypeValueMap ¶
ReferenceTypeValueMap is the raw data used to build the evaluation context
When resolving hcl references like : - query.q1 - var.v1 - mod1.query.my_query.sql
ReferenceTypeValueMap is keyed by resource type, then by resource name
type WorkspaceProfileParseContext ¶
type WorkspaceProfileParseContext[T modconfig.WorkspaceProfile] struct { ParseContext // contains filtered or unexported fields }
func NewWorkspaceProfileParseContext ¶
func NewWorkspaceProfileParseContext[T modconfig.WorkspaceProfile](rootEvalPath string) *WorkspaceProfileParseContext[T]
func (*WorkspaceProfileParseContext[T]) AddResource ¶
func (c *WorkspaceProfileParseContext[T]) AddResource(workspaceProfile T) hcl.Diagnostics
AddResource stores this resource as a variable to be added to the eval context. It alse
Source Files ¶
- connection.go
- credential.go
- decode.go
- decode_args.go
- decode_body.go
- decode_children.go
- decode_options.go
- decode_result.go
- installed_mod.go
- limiter.go
- metadata.go
- mod.go
- mod_dependency_config.go
- mod_parse_context.go
- mod_parse_context_blocks.go
- parse_context.go
- parser.go
- pipeline_decode.go
- plugin.go
- query_invocation.go
- references.go
- schema.go
- unresolved_block.go
- validate.go
- workspace_profile.go
- workspace_profile_parse_context.go