opentofu/terraform/eval_interpolate.go

54 lines
1.2 KiB
Go
Raw Normal View History

2015-02-03 03:43:18 -06:00
package terraform
import (
"log"
"github.com/hashicorp/terraform/config"
)
2015-02-03 03:43:18 -06:00
// EvalInterpolate is an EvalNode implementation that takes a raw
// configuration and interpolates it.
type EvalInterpolate struct {
Config *config.RawConfig
Resource *Resource
2015-02-14 00:58:41 -06:00
Output **ResourceConfig
2015-02-03 03:43:18 -06:00
}
2015-02-14 00:58:41 -06:00
func (n *EvalInterpolate) Eval(ctx EvalContext) (interface{}, error) {
rc, err := ctx.Interpolate(n.Config, n.Resource)
if err != nil {
return nil, err
}
2015-02-03 03:43:18 -06:00
2015-02-14 00:58:41 -06:00
if n.Output != nil {
*n.Output = rc
}
2015-02-03 03:43:18 -06:00
2015-02-14 00:58:41 -06:00
return nil, nil
2015-02-03 03:43:18 -06:00
}
// EvalTryInterpolate is an EvalNode implementation that takes a raw
// configuration and interpolates it, but only logs a warning on an
// interpolation error, and stops further Eval steps.
// This is used during Input where a value may not be known before Refresh, but
// we don't want to block Input.
type EvalTryInterpolate struct {
Config *config.RawConfig
Resource *Resource
Output **ResourceConfig
}
func (n *EvalTryInterpolate) Eval(ctx EvalContext) (interface{}, error) {
rc, err := ctx.Interpolate(n.Config, n.Resource)
if err != nil {
log.Printf("[WARN] Interpolation %q failed: %s", n.Config.Key, err)
return nil, EvalEarlyExitError{}
}
if n.Output != nil {
*n.Output = rc
}
return nil, nil
}