github.com/ibm-cloud/terraform@v0.6.4-0.20170726051544-8872b87621df/terraform/eval_resource.go (about)

     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  }