]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - terraform/eval_resource.go
Merge branch 'fix_read_test' of github.com:alexandreFre/terraform-provider-statuscake
[github/fretlink/terraform-provider-statuscake.git] / terraform / eval_resource.go
1 package terraform
2
3 // EvalInstanceInfo is an EvalNode implementation that fills in the
4 // InstanceInfo as much as it can.
5 type EvalInstanceInfo struct {
6 Info *InstanceInfo
7 }
8
9 // TODO: test
10 func (n *EvalInstanceInfo) Eval(ctx EvalContext) (interface{}, error) {
11 n.Info.ModulePath = ctx.Path()
12 return nil, nil
13 }