2018-04-04 03:11:28 +02:00
|
|
|
package lang
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2019-09-10 00:58:44 +02:00
|
|
|
"github.com/hashicorp/hcl/v2"
|
|
|
|
"github.com/hashicorp/hcl/v2/ext/dynblock"
|
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
2019-03-27 01:27:14 +01:00
|
|
|
"github.com/hashicorp/terraform/addrs"
|
2018-07-05 19:33:29 +02:00
|
|
|
"github.com/hashicorp/terraform/configs/configschema"
|
2019-03-27 01:27:14 +01:00
|
|
|
"github.com/hashicorp/terraform/lang/blocktoattr"
|
2018-04-04 03:11:28 +02:00
|
|
|
"github.com/hashicorp/terraform/tfdiags"
|
|
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/zclconf/go-cty/cty/convert"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ExpandBlock expands any "dynamic" blocks present in the given body. The
|
|
|
|
// result is a body with those blocks expanded, ready to be evaluated with
|
|
|
|
// EvalBlock.
|
|
|
|
//
|
|
|
|
// If the returned diagnostics contains errors then the result may be
|
|
|
|
// incomplete or invalid.
|
|
|
|
func (s *Scope) ExpandBlock(body hcl.Body, schema *configschema.Block) (hcl.Body, tfdiags.Diagnostics) {
|
|
|
|
spec := schema.DecoderSpec()
|
|
|
|
|
2019-03-19 00:55:16 +01:00
|
|
|
traversals := dynblock.ExpandVariablesHCLDec(body, spec)
|
2018-04-04 03:11:28 +02:00
|
|
|
refs, diags := References(traversals)
|
|
|
|
|
|
|
|
ctx, ctxDiags := s.EvalContext(refs)
|
|
|
|
diags = diags.Append(ctxDiags)
|
|
|
|
|
|
|
|
return dynblock.Expand(body, ctx), diags
|
|
|
|
}
|
|
|
|
|
|
|
|
// EvalBlock evaluates the given body using the given block schema and returns
|
|
|
|
// a cty object value representing its contents. The type of the result conforms
|
|
|
|
// to the implied type of the given schema.
|
|
|
|
//
|
|
|
|
// This function does not automatically expand "dynamic" blocks within the
|
|
|
|
// body. If that is desired, first call the ExpandBlock method to obtain
|
|
|
|
// an expanded body to pass to this method.
|
|
|
|
//
|
|
|
|
// If the returned diagnostics contains errors then the result may be
|
|
|
|
// incomplete or invalid.
|
|
|
|
func (s *Scope) EvalBlock(body hcl.Body, schema *configschema.Block) (cty.Value, tfdiags.Diagnostics) {
|
|
|
|
spec := schema.DecoderSpec()
|
|
|
|
|
2019-04-04 00:25:58 +02:00
|
|
|
refs, diags := ReferencesInBlock(body, schema)
|
2018-04-04 03:11:28 +02:00
|
|
|
|
|
|
|
ctx, ctxDiags := s.EvalContext(refs)
|
|
|
|
diags = diags.Append(ctxDiags)
|
2018-11-21 02:25:05 +01:00
|
|
|
if diags.HasErrors() {
|
|
|
|
// We'll stop early if we found problems in the references, because
|
|
|
|
// it's likely evaluation will produce redundant copies of the same errors.
|
|
|
|
return cty.UnknownVal(schema.ImpliedType()), diags
|
|
|
|
}
|
2018-04-04 03:11:28 +02:00
|
|
|
|
2019-03-27 01:27:14 +01:00
|
|
|
// HACK: In order to remain compatible with some assumptions made in
|
|
|
|
// Terraform v0.11 and earlier about the approximate equivalence of
|
|
|
|
// attribute vs. block syntax, we do a just-in-time fixup here to allow
|
|
|
|
// any attribute in the schema that has a list-of-objects or set-of-objects
|
|
|
|
// kind to potentially be populated instead by one or more nested blocks
|
|
|
|
// whose type is the attribute name.
|
|
|
|
body = blocktoattr.FixUpBlockAttrs(body, schema)
|
|
|
|
|
2018-04-04 03:11:28 +02:00
|
|
|
val, evalDiags := hcldec.Decode(body, spec, ctx)
|
|
|
|
diags = diags.Append(evalDiags)
|
|
|
|
|
|
|
|
return val, diags
|
|
|
|
}
|
|
|
|
|
|
|
|
// EvalExpr evaluates a single expression in the receiving context and returns
|
|
|
|
// the resulting value. The value will be converted to the given type before
|
|
|
|
// it is returned if possible, or else an error diagnostic will be produced
|
|
|
|
// describing the conversion error.
|
|
|
|
//
|
|
|
|
// Pass an expected type of cty.DynamicPseudoType to skip automatic conversion
|
|
|
|
// and just obtain the returned value directly.
|
|
|
|
//
|
|
|
|
// If the returned diagnostics contains errors then the result may be
|
|
|
|
// incomplete, but will always be of the requested type.
|
|
|
|
func (s *Scope) EvalExpr(expr hcl.Expression, wantType cty.Type) (cty.Value, tfdiags.Diagnostics) {
|
|
|
|
refs, diags := ReferencesInExpr(expr)
|
|
|
|
|
|
|
|
ctx, ctxDiags := s.EvalContext(refs)
|
|
|
|
diags = diags.Append(ctxDiags)
|
2018-11-21 02:25:05 +01:00
|
|
|
if diags.HasErrors() {
|
|
|
|
// We'll stop early if we found problems in the references, because
|
|
|
|
// it's likely evaluation will produce redundant copies of the same errors.
|
|
|
|
return cty.UnknownVal(wantType), diags
|
|
|
|
}
|
2018-04-04 03:11:28 +02:00
|
|
|
|
|
|
|
val, evalDiags := expr.Value(ctx)
|
|
|
|
diags = diags.Append(evalDiags)
|
|
|
|
|
2018-12-06 03:14:17 +01:00
|
|
|
if wantType != cty.DynamicPseudoType {
|
|
|
|
var convErr error
|
|
|
|
val, convErr = convert.Convert(val, wantType)
|
|
|
|
if convErr != nil {
|
|
|
|
val = cty.UnknownVal(wantType)
|
|
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
|
|
Severity: hcl.DiagError,
|
|
|
|
Summary: "Incorrect value type",
|
|
|
|
Detail: fmt.Sprintf("Invalid expression value: %s.", tfdiags.FormatError(convErr)),
|
|
|
|
Subject: expr.Range().Ptr(),
|
|
|
|
})
|
|
|
|
}
|
2018-04-04 03:11:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return val, diags
|
|
|
|
}
|
|
|
|
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02:00
|
|
|
// EvalReference evaluates the given reference in the receiving scope and
|
|
|
|
// returns the resulting value. The value will be converted to the given type before
|
|
|
|
// it is returned if possible, or else an error diagnostic will be produced
|
|
|
|
// describing the conversion error.
|
|
|
|
//
|
|
|
|
// Pass an expected type of cty.DynamicPseudoType to skip automatic conversion
|
|
|
|
// and just obtain the returned value directly.
|
|
|
|
//
|
|
|
|
// If the returned diagnostics contains errors then the result may be
|
|
|
|
// incomplete, but will always be of the requested type.
|
|
|
|
func (s *Scope) EvalReference(ref *addrs.Reference, wantType cty.Type) (cty.Value, tfdiags.Diagnostics) {
|
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
|
|
|
// We cheat a bit here and just build an EvalContext for our requested
|
|
|
|
// reference with the "self" address overridden, and then pull the "self"
|
|
|
|
// result out of it to return.
|
|
|
|
ctx, ctxDiags := s.evalContext([]*addrs.Reference{ref}, ref.Subject)
|
|
|
|
diags = diags.Append(ctxDiags)
|
|
|
|
val := ctx.Variables["self"]
|
|
|
|
if val == cty.NilVal {
|
|
|
|
val = cty.DynamicVal
|
|
|
|
}
|
|
|
|
|
|
|
|
var convErr error
|
|
|
|
val, convErr = convert.Convert(val, wantType)
|
|
|
|
if convErr != nil {
|
|
|
|
val = cty.UnknownVal(wantType)
|
|
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
|
|
Severity: hcl.DiagError,
|
|
|
|
Summary: "Incorrect value type",
|
|
|
|
Detail: fmt.Sprintf("Invalid expression value: %s.", tfdiags.FormatError(convErr)),
|
|
|
|
Subject: ref.SourceRange.ToHCL().Ptr(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return val, diags
|
|
|
|
}
|
|
|
|
|
2018-04-04 03:11:28 +02:00
|
|
|
// EvalContext constructs a HCL expression evaluation context whose variable
|
|
|
|
// scope contains sufficient values to satisfy the given set of references.
|
|
|
|
//
|
|
|
|
// Most callers should prefer to use the evaluation helper methods that
|
|
|
|
// this type offers, but this is here for less common situations where the
|
|
|
|
// caller will handle the evaluation calls itself.
|
|
|
|
func (s *Scope) EvalContext(refs []*addrs.Reference) (*hcl.EvalContext, tfdiags.Diagnostics) {
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02:00
|
|
|
return s.evalContext(refs, s.SelfAddr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Scope) evalContext(refs []*addrs.Reference, selfAddr addrs.Referenceable) (*hcl.EvalContext, tfdiags.Diagnostics) {
|
2018-12-15 02:14:17 +01:00
|
|
|
if s == nil {
|
|
|
|
panic("attempt to construct EvalContext for nil Scope")
|
|
|
|
}
|
|
|
|
|
2018-04-04 03:11:28 +02:00
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
vals := make(map[string]cty.Value)
|
|
|
|
funcs := s.Functions()
|
|
|
|
ctx := &hcl.EvalContext{
|
|
|
|
Variables: vals,
|
|
|
|
Functions: funcs,
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(refs) == 0 {
|
|
|
|
// Easy path for common case where there are no references at all.
|
|
|
|
return ctx, diags
|
|
|
|
}
|
|
|
|
|
2018-11-21 02:25:05 +01:00
|
|
|
// First we'll do static validation of the references. This catches things
|
|
|
|
// early that might otherwise not get caught due to unknown values being
|
|
|
|
// present in the scope during planning.
|
|
|
|
if staticDiags := s.Data.StaticValidateReferences(refs, selfAddr); staticDiags.HasErrors() {
|
|
|
|
diags = diags.Append(staticDiags)
|
|
|
|
return ctx, diags
|
|
|
|
}
|
|
|
|
|
2018-04-04 03:11:28 +02:00
|
|
|
// The reference set we are given has not been de-duped, and so there can
|
|
|
|
// be redundant requests in it for two reasons:
|
|
|
|
// - The same item is referenced multiple times
|
|
|
|
// - Both an item and that item's container are separately referenced.
|
|
|
|
// We will still visit every reference here and ask our data source for
|
|
|
|
// it, since that allows us to gather a full set of any errors and
|
|
|
|
// warnings, but once we've gathered all the data we'll then skip anything
|
|
|
|
// that's redundant in the process of populating our values map.
|
2019-08-24 01:20:47 +02:00
|
|
|
dataResources := map[string]map[string]cty.Value{}
|
|
|
|
managedResources := map[string]map[string]cty.Value{}
|
2020-04-12 16:43:41 +02:00
|
|
|
wholeModules := map[string]cty.Value{}
|
2018-04-04 03:11:28 +02:00
|
|
|
inputVariables := map[string]cty.Value{}
|
|
|
|
localValues := map[string]cty.Value{}
|
|
|
|
pathAttrs := map[string]cty.Value{}
|
|
|
|
terraformAttrs := map[string]cty.Value{}
|
|
|
|
countAttrs := map[string]cty.Value{}
|
2019-06-12 17:07:32 +02:00
|
|
|
forEachAttrs := map[string]cty.Value{}
|
2018-04-04 03:11:28 +02:00
|
|
|
var self cty.Value
|
|
|
|
|
|
|
|
for _, ref := range refs {
|
|
|
|
rng := ref.SourceRange
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02:00
|
|
|
|
|
|
|
rawSubj := ref.Subject
|
|
|
|
if rawSubj == addrs.Self {
|
|
|
|
if selfAddr == nil {
|
|
|
|
diags = diags.Append(&hcl.Diagnostic{
|
|
|
|
Severity: hcl.DiagError,
|
|
|
|
Summary: `Invalid "self" reference`,
|
|
|
|
// This detail message mentions some current practice that
|
|
|
|
// this codepath doesn't really "know about". If the "self"
|
|
|
|
// object starts being supported in more contexts later then
|
|
|
|
// we'll need to adjust this message.
|
|
|
|
Detail: `The "self" object is not available in this context. This object can be used only in resource provisioner and connection blocks.`,
|
|
|
|
Subject: ref.SourceRange.ToHCL().Ptr(),
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
}
|
2018-04-04 03:11:28 +02:00
|
|
|
|
2019-09-19 15:13:47 +02:00
|
|
|
if selfAddr == addrs.Self {
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02:00
|
|
|
// Programming error: the self address cannot alias itself.
|
|
|
|
panic("scope SelfAddr attempting to alias itself")
|
|
|
|
}
|
2019-09-19 15:13:47 +02:00
|
|
|
|
2019-10-08 00:13:20 +02:00
|
|
|
// self can only be used within a resource instance
|
|
|
|
subj := selfAddr.(addrs.ResourceInstance)
|
|
|
|
|
2019-09-19 15:13:47 +02:00
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetResource(subj.ContainingResource(), rng))
|
|
|
|
|
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
|
|
|
|
// Self is an exception in that it must always resolve to a
|
|
|
|
// particular instance. We will still insert the full resource into
|
|
|
|
// the context below.
|
2019-10-28 20:36:04 +01:00
|
|
|
var hclDiags hcl.Diagnostics
|
|
|
|
// We should always have a valid self index by this point, but in
|
|
|
|
// the case of an error, self may end up as a cty.DynamicValue.
|
2019-09-19 15:13:47 +02:00
|
|
|
switch k := subj.Key.(type) {
|
|
|
|
case addrs.IntKey:
|
2019-10-28 20:36:04 +01:00
|
|
|
self, hclDiags = hcl.Index(val, cty.NumberIntVal(int64(k)), ref.SourceRange.ToHCL().Ptr())
|
|
|
|
diags.Append(hclDiags)
|
2019-09-19 15:13:47 +02:00
|
|
|
case addrs.StringKey:
|
2019-10-28 20:36:04 +01:00
|
|
|
self, hclDiags = hcl.Index(val, cty.StringVal(string(k)), ref.SourceRange.ToHCL().Ptr())
|
|
|
|
diags.Append(hclDiags)
|
2019-09-19 15:13:47 +02:00
|
|
|
default:
|
|
|
|
self = val
|
|
|
|
}
|
|
|
|
continue
|
2018-04-04 03:11:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// This type switch must cover all of the "Referenceable" implementations
|
2019-10-08 00:13:20 +02:00
|
|
|
// in package addrs, however we are removing the possibility of
|
2020-04-12 16:43:41 +02:00
|
|
|
// Instances beforehand.
|
|
|
|
switch addr := rawSubj.(type) {
|
|
|
|
case addrs.ResourceInstance:
|
2019-10-08 00:13:20 +02:00
|
|
|
rawSubj = addr.ContainingResource()
|
2020-04-12 16:43:41 +02:00
|
|
|
case addrs.ModuleCallInstance:
|
|
|
|
rawSubj = addr.Call
|
|
|
|
case addrs.AbsModuleCallOutput:
|
|
|
|
rawSubj = addr.Call.Call
|
2019-10-08 00:13:20 +02:00
|
|
|
}
|
2018-04-04 03:11:28 +02:00
|
|
|
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02:00
|
|
|
switch subj := rawSubj.(type) {
|
2019-09-19 15:13:47 +02:00
|
|
|
case addrs.Resource:
|
|
|
|
var into map[string]map[string]cty.Value
|
|
|
|
switch subj.Mode {
|
2018-04-04 03:11:28 +02:00
|
|
|
case addrs.ManagedResourceMode:
|
|
|
|
into = managedResources
|
|
|
|
case addrs.DataResourceMode:
|
|
|
|
into = dataResources
|
|
|
|
default:
|
2019-09-19 15:13:47 +02:00
|
|
|
panic(fmt.Errorf("unsupported ResourceMode %s", subj.Mode))
|
2018-04-04 03:11:28 +02:00
|
|
|
}
|
|
|
|
|
2019-09-19 15:13:47 +02:00
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetResource(subj, rng))
|
2018-04-04 03:11:28 +02:00
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
|
2019-09-19 15:13:47 +02:00
|
|
|
r := subj
|
2018-04-04 03:11:28 +02:00
|
|
|
if into[r.Type] == nil {
|
2019-09-19 15:13:47 +02:00
|
|
|
into[r.Type] = make(map[string]cty.Value)
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02:00
|
|
|
}
|
2019-09-19 15:13:47 +02:00
|
|
|
into[r.Type][r.Name] = val
|
2018-04-04 03:11:28 +02:00
|
|
|
|
2020-04-12 16:43:41 +02:00
|
|
|
case addrs.ModuleCall:
|
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetModule(subj, rng))
|
2018-04-04 03:11:28 +02:00
|
|
|
diags = diags.Append(valDiags)
|
2020-04-12 16:43:41 +02:00
|
|
|
wholeModules[subj.Name] = val
|
2018-04-04 03:11:28 +02:00
|
|
|
|
|
|
|
case addrs.InputVariable:
|
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetInputVariable(subj, rng))
|
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
inputVariables[subj.Name] = val
|
|
|
|
|
|
|
|
case addrs.LocalValue:
|
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetLocalValue(subj, rng))
|
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
localValues[subj.Name] = val
|
|
|
|
|
|
|
|
case addrs.PathAttr:
|
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetPathAttr(subj, rng))
|
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
pathAttrs[subj.Name] = val
|
|
|
|
|
|
|
|
case addrs.TerraformAttr:
|
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetTerraformAttr(subj, rng))
|
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
terraformAttrs[subj.Name] = val
|
|
|
|
|
|
|
|
case addrs.CountAttr:
|
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetCountAttr(subj, rng))
|
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
countAttrs[subj.Name] = val
|
|
|
|
|
2019-06-12 17:07:32 +02:00
|
|
|
case addrs.ForEachAttr:
|
|
|
|
val, valDiags := normalizeRefValue(s.Data.GetForEachAttr(subj, rng))
|
|
|
|
diags = diags.Append(valDiags)
|
|
|
|
forEachAttrs[subj.Name] = val
|
|
|
|
|
2018-04-04 03:11:28 +02:00
|
|
|
default:
|
|
|
|
// Should never happen
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02:00
|
|
|
panic(fmt.Errorf("Scope.buildEvalContext cannot handle address type %T", rawSubj))
|
2018-04-04 03:11:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for k, v := range buildResourceObjects(managedResources) {
|
|
|
|
vals[k] = v
|
|
|
|
}
|
|
|
|
vals["data"] = cty.ObjectVal(buildResourceObjects(dataResources))
|
2020-04-12 16:43:41 +02:00
|
|
|
vals["module"] = cty.ObjectVal(wholeModules)
|
2018-04-04 03:11:28 +02:00
|
|
|
vals["var"] = cty.ObjectVal(inputVariables)
|
|
|
|
vals["local"] = cty.ObjectVal(localValues)
|
|
|
|
vals["path"] = cty.ObjectVal(pathAttrs)
|
|
|
|
vals["terraform"] = cty.ObjectVal(terraformAttrs)
|
|
|
|
vals["count"] = cty.ObjectVal(countAttrs)
|
2019-06-12 17:07:32 +02:00
|
|
|
vals["each"] = cty.ObjectVal(forEachAttrs)
|
2018-04-04 03:11:28 +02:00
|
|
|
if self != cty.NilVal {
|
|
|
|
vals["self"] = self
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx, diags
|
|
|
|
}
|
|
|
|
|
2019-08-24 01:20:47 +02:00
|
|
|
func buildResourceObjects(resources map[string]map[string]cty.Value) map[string]cty.Value {
|
2018-04-04 03:11:28 +02:00
|
|
|
vals := make(map[string]cty.Value)
|
2019-08-24 01:20:47 +02:00
|
|
|
for typeName, nameVals := range resources {
|
2018-04-04 03:11:28 +02:00
|
|
|
vals[typeName] = cty.ObjectVal(nameVals)
|
|
|
|
}
|
|
|
|
return vals
|
|
|
|
}
|
|
|
|
|
|
|
|
func normalizeRefValue(val cty.Value, diags tfdiags.Diagnostics) (cty.Value, tfdiags.Diagnostics) {
|
|
|
|
if diags.HasErrors() {
|
|
|
|
// If there are errors then we will force an unknown result so that
|
|
|
|
// we can still evaluate and catch type errors but we'll avoid
|
|
|
|
// producing redundant re-statements of the same errors we've already
|
|
|
|
// dealt with here.
|
|
|
|
return cty.UnknownVal(val.Type()), diags
|
|
|
|
}
|
|
|
|
return val, diags
|
|
|
|
}
|