terraform: outputs should be properly calculated for modules now
This commit is contained in:
parent
6b2781d77c
commit
1b5d0ed0bb
|
@ -115,17 +115,6 @@ func (c *Context) Apply() (*State, error) {
|
||||||
v := c.acquireRun()
|
v := c.acquireRun()
|
||||||
defer c.releaseRun(v)
|
defer c.releaseRun(v)
|
||||||
|
|
||||||
g, err := Graph(&GraphOpts{
|
|
||||||
Diff: c.diff,
|
|
||||||
Module: c.module,
|
|
||||||
Providers: c.providers,
|
|
||||||
Provisioners: c.provisioners,
|
|
||||||
State: c.state,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set our state right away. No matter what, this IS our new state,
|
// Set our state right away. No matter what, this IS our new state,
|
||||||
// even if there is an error below.
|
// even if there is an error below.
|
||||||
c.state = c.state.deepcopy()
|
c.state = c.state.deepcopy()
|
||||||
|
@ -136,28 +125,12 @@ func (c *Context) Apply() (*State, error) {
|
||||||
|
|
||||||
// Walk
|
// Walk
|
||||||
log.Printf("[INFO] Apply walk starting")
|
log.Printf("[INFO] Apply walk starting")
|
||||||
wc := c.walkContext(rootModulePath)
|
err := c.walkContext(walkApply, rootModulePath).Walk()
|
||||||
err = g.Walk(wc.applyWalkFn())
|
|
||||||
log.Printf("[INFO] Apply walk complete")
|
log.Printf("[INFO] Apply walk complete")
|
||||||
|
|
||||||
// Prune the state so that we have as clean a state as possible
|
// Prune the state so that we have as clean a state as possible
|
||||||
c.state.prune()
|
c.state.prune()
|
||||||
|
|
||||||
// If we have no errors, then calculate the outputs if we have any
|
|
||||||
root := c.state.RootModule()
|
|
||||||
if err == nil && len(c.config.Outputs) > 0 && len(root.Resources) > 0 {
|
|
||||||
outputs := make(map[string]string)
|
|
||||||
for _, o := range c.config.Outputs {
|
|
||||||
if err = wc.computeVars(o.RawConfig); err != nil {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
outputs[o.Name] = o.RawConfig.Config()["value"].(string)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Assign the outputs to the root module
|
|
||||||
root.Outputs = outputs
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.state, err
|
return c.state, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -177,28 +150,17 @@ func (c *Context) Plan(opts *PlanOpts) (*Plan, error) {
|
||||||
v := c.acquireRun()
|
v := c.acquireRun()
|
||||||
defer c.releaseRun(v)
|
defer c.releaseRun(v)
|
||||||
|
|
||||||
g, err := Graph(&GraphOpts{
|
|
||||||
Module: c.module,
|
|
||||||
Providers: c.providers,
|
|
||||||
Provisioners: c.provisioners,
|
|
||||||
State: c.state,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
p := &Plan{
|
p := &Plan{
|
||||||
Config: c.config,
|
Config: c.config,
|
||||||
Vars: c.variables,
|
Vars: c.variables,
|
||||||
State: c.state,
|
State: c.state,
|
||||||
}
|
}
|
||||||
|
|
||||||
var walkFn depgraph.WalkFunc
|
wc := c.walkContext(walkInvalid, rootModulePath)
|
||||||
|
wc.Meta = p
|
||||||
|
|
||||||
if opts != nil && opts.Destroy {
|
if opts != nil && opts.Destroy {
|
||||||
// If we're destroying, we use a different walk function since it
|
wc.Operation = walkPlanDestroy
|
||||||
// doesn't need as many details.
|
|
||||||
walkFn = c.planDestroyWalkFn(p)
|
|
||||||
} else {
|
} else {
|
||||||
// Set our state to be something temporary. We do this so that
|
// Set our state to be something temporary. We do this so that
|
||||||
// the plan can update a fake state so that variables work, then
|
// the plan can update a fake state so that variables work, then
|
||||||
|
@ -214,11 +176,11 @@ func (c *Context) Plan(opts *PlanOpts) (*Plan, error) {
|
||||||
c.state = old
|
c.state = old
|
||||||
}()
|
}()
|
||||||
|
|
||||||
walkFn = c.walkContext(rootModulePath).planWalkFn(p)
|
wc.Operation = walkPlan
|
||||||
}
|
}
|
||||||
|
|
||||||
// Walk and run the plan
|
// Walk and run the plan
|
||||||
err = g.Walk(walkFn)
|
err := wc.Walk()
|
||||||
|
|
||||||
// Update the diff so that our context is up-to-date
|
// Update the diff so that our context is up-to-date
|
||||||
c.diff = p.Diff
|
c.diff = p.Diff
|
||||||
|
@ -239,18 +201,8 @@ func (c *Context) Refresh() (*State, error) {
|
||||||
// Update our state
|
// Update our state
|
||||||
c.state = c.state.deepcopy()
|
c.state = c.state.deepcopy()
|
||||||
|
|
||||||
g, err := Graph(&GraphOpts{
|
|
||||||
Module: c.module,
|
|
||||||
Providers: c.providers,
|
|
||||||
Provisioners: c.provisioners,
|
|
||||||
State: c.state,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return c.state, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Walk the graph
|
// Walk the graph
|
||||||
err = g.Walk(c.walkContext(rootModulePath).refreshWalkFn())
|
err := c.walkContext(walkRefresh, rootModulePath).Walk()
|
||||||
|
|
||||||
// Prune the state
|
// Prune the state
|
||||||
c.state.prune()
|
c.state.prune()
|
||||||
|
@ -357,33 +309,6 @@ func (c *Context) releaseRun(ch chan<- struct{}) {
|
||||||
c.sh.Reset()
|
c.sh.Reset()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Context) planDestroyWalkFn(result *Plan) depgraph.WalkFunc {
|
|
||||||
var l sync.Mutex
|
|
||||||
|
|
||||||
// Initialize the result
|
|
||||||
result.init()
|
|
||||||
|
|
||||||
return func(n *depgraph.Noun) error {
|
|
||||||
rn, ok := n.Meta.(*GraphNodeResource)
|
|
||||||
if !ok {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
r := rn.Resource
|
|
||||||
if r.State != nil && r.State.ID != "" {
|
|
||||||
log.Printf("[DEBUG] %s: Making for destroy", r.Id)
|
|
||||||
|
|
||||||
l.Lock()
|
|
||||||
defer l.Unlock()
|
|
||||||
result.Diff.RootModule().Resources[r.Id] = &InstanceDiff{Destroy: true}
|
|
||||||
} else {
|
|
||||||
log.Printf("[DEBUG] %s: Not marking for destroy, no ID", r.Id)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *Context) validateWalkFn(rws *[]string, res *[]error) depgraph.WalkFunc {
|
func (c *Context) validateWalkFn(rws *[]string, res *[]error) depgraph.WalkFunc {
|
||||||
var l sync.Mutex
|
var l sync.Mutex
|
||||||
|
|
||||||
|
@ -468,21 +393,112 @@ func (c *Context) validateWalkFn(rws *[]string, res *[]error) depgraph.WalkFunc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Context) walkContext(path []string) *walkContext {
|
func (c *Context) walkContext(op walkOperation, path []string) *walkContext {
|
||||||
return &walkContext{
|
return &walkContext{
|
||||||
Context: c,
|
Context: c,
|
||||||
Path: path,
|
Operation: op,
|
||||||
|
Path: path,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// walkContext is the context in which a graph walk is done. It stores
|
// walkContext is the context in which a graph walk is done. It stores
|
||||||
// much the same as a Context but works on a specific module.
|
// much the same as a Context but works on a specific module.
|
||||||
type walkContext struct {
|
type walkContext struct {
|
||||||
Context *Context
|
Context *Context
|
||||||
Path []string
|
Meta interface{}
|
||||||
|
Operation walkOperation
|
||||||
|
Path []string
|
||||||
|
|
||||||
|
// This is only set manually by subsequent context creations
|
||||||
|
// in genericWalkFunc.
|
||||||
|
graph *depgraph.Graph
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *walkContext) Refresh() error {
|
// walkOperation is an enum which tells the walkContext what to do.
|
||||||
|
type walkOperation byte
|
||||||
|
|
||||||
|
const (
|
||||||
|
walkInvalid walkOperation = iota
|
||||||
|
walkApply
|
||||||
|
walkPlan
|
||||||
|
walkPlanDestroy
|
||||||
|
walkRefresh
|
||||||
|
)
|
||||||
|
|
||||||
|
func (c *walkContext) Walk() error {
|
||||||
|
g := c.graph
|
||||||
|
if g == nil {
|
||||||
|
gopts := &GraphOpts{
|
||||||
|
Module: c.Context.module,
|
||||||
|
Providers: c.Context.providers,
|
||||||
|
Provisioners: c.Context.provisioners,
|
||||||
|
State: c.Context.state,
|
||||||
|
}
|
||||||
|
if c.Operation == walkApply {
|
||||||
|
gopts.Diff = c.Context.diff
|
||||||
|
}
|
||||||
|
|
||||||
|
var err error
|
||||||
|
g, err = Graph(gopts)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var walkFn depgraph.WalkFunc
|
||||||
|
switch c.Operation {
|
||||||
|
case walkApply:
|
||||||
|
walkFn = c.applyWalkFn()
|
||||||
|
case walkPlan:
|
||||||
|
walkFn = c.planWalkFn()
|
||||||
|
case walkPlanDestroy:
|
||||||
|
walkFn = c.planDestroyWalkFn()
|
||||||
|
case walkRefresh:
|
||||||
|
walkFn = c.refreshWalkFn()
|
||||||
|
default:
|
||||||
|
panic(fmt.Sprintf("unknown operation: %s", c.Operation))
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := g.Walk(walkFn); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we're not applying, we're done.
|
||||||
|
if c.Operation != walkApply {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// We did an apply, so we need to calculate the outputs. If we have no
|
||||||
|
// outputs, then we're done.
|
||||||
|
m := c.Context.module
|
||||||
|
for _, n := range c.Path[1:] {
|
||||||
|
cs := m.Children()
|
||||||
|
m = cs[n]
|
||||||
|
}
|
||||||
|
config := m.Config()
|
||||||
|
if len(config.Outputs) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Likewise, if we have no resources in our state, we're done. This
|
||||||
|
// guards against the case that we destroyed.
|
||||||
|
mod := c.Context.state.ModuleByPath(c.Path)
|
||||||
|
mod.prune()
|
||||||
|
if len(mod.Resources) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
outputs := make(map[string]string)
|
||||||
|
for _, o := range config.Outputs {
|
||||||
|
if err := c.computeVars(o.RawConfig); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
outputs[o.Name] = o.RawConfig.Config()["value"].(string)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Assign the outputs to the root module
|
||||||
|
mod.Outputs = outputs
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -632,10 +648,11 @@ func (c *walkContext) applyWalkFn() depgraph.WalkFunc {
|
||||||
return c.genericWalkFn(cb)
|
return c.genericWalkFn(cb)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *walkContext) planWalkFn(result *Plan) depgraph.WalkFunc {
|
func (c *walkContext) planWalkFn() depgraph.WalkFunc {
|
||||||
var l sync.Mutex
|
var l sync.Mutex
|
||||||
|
|
||||||
// Initialize the result
|
// Initialize the result
|
||||||
|
result := c.Meta.(*Plan)
|
||||||
result.init()
|
result.init()
|
||||||
|
|
||||||
cb := func(c *walkContext, r *Resource) error {
|
cb := func(c *walkContext, r *Resource) error {
|
||||||
|
@ -741,6 +758,34 @@ func (c *walkContext) planWalkFn(result *Plan) depgraph.WalkFunc {
|
||||||
return c.genericWalkFn(cb)
|
return c.genericWalkFn(cb)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *walkContext) planDestroyWalkFn() depgraph.WalkFunc {
|
||||||
|
var l sync.Mutex
|
||||||
|
|
||||||
|
// Initialize the result
|
||||||
|
result := c.Meta.(*Plan)
|
||||||
|
result.init()
|
||||||
|
|
||||||
|
return func(n *depgraph.Noun) error {
|
||||||
|
rn, ok := n.Meta.(*GraphNodeResource)
|
||||||
|
if !ok {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
r := rn.Resource
|
||||||
|
if r.State != nil && r.State.ID != "" {
|
||||||
|
log.Printf("[DEBUG] %s: Making for destroy", r.Id)
|
||||||
|
|
||||||
|
l.Lock()
|
||||||
|
defer l.Unlock()
|
||||||
|
result.Diff.RootModule().Resources[r.Id] = &InstanceDiff{Destroy: true}
|
||||||
|
} else {
|
||||||
|
log.Printf("[DEBUG] %s: Not marking for destroy, no ID", r.Id)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (c *walkContext) refreshWalkFn() depgraph.WalkFunc {
|
func (c *walkContext) refreshWalkFn() depgraph.WalkFunc {
|
||||||
cb := func(c *walkContext, r *Resource) error {
|
cb := func(c *walkContext, r *Resource) error {
|
||||||
is := r.State
|
is := r.State
|
||||||
|
@ -801,8 +846,15 @@ func (c *walkContext) genericWalkFn(cb genericWalkFunc) depgraph.WalkFunc {
|
||||||
switch m := n.Meta.(type) {
|
switch m := n.Meta.(type) {
|
||||||
case *GraphNodeModule:
|
case *GraphNodeModule:
|
||||||
// Build another walkContext for this module and walk it.
|
// Build another walkContext for this module and walk it.
|
||||||
wc := c.Context.walkContext(m.Path)
|
wc := c.Context.walkContext(c.Operation, m.Path)
|
||||||
return m.Graph.Walk(wc.genericWalkFn(cb))
|
|
||||||
|
// Set the graph to specifically walk this subgraph
|
||||||
|
wc.graph = m.Graph
|
||||||
|
|
||||||
|
// Preserve the meta
|
||||||
|
wc.Meta = c.Meta
|
||||||
|
|
||||||
|
return wc.Walk()
|
||||||
case *GraphNodeResource:
|
case *GraphNodeResource:
|
||||||
// Continue, we care about this the most
|
// Continue, we care about this the most
|
||||||
case *GraphNodeResourceMeta:
|
case *GraphNodeResourceMeta:
|
||||||
|
|
|
@ -1490,6 +1490,30 @@ func TestContextPlan_moduleOrphans(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestContextPlan_moduleVar(t *testing.T) {
|
||||||
|
t.Skip()
|
||||||
|
m := testModule(t, "plan-module-var")
|
||||||
|
p := testProvider("aws")
|
||||||
|
p.DiffFn = testDiffFn
|
||||||
|
ctx := testContext(t, &ContextOpts{
|
||||||
|
Module: m,
|
||||||
|
Providers: map[string]ResourceProviderFactory{
|
||||||
|
"aws": testProviderFuncFixed(p),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
plan, err := ctx.Plan(nil)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
actual := strings.TrimSpace(plan.String())
|
||||||
|
expected := strings.TrimSpace(testTerraformPlanModulesStr)
|
||||||
|
if actual != expected {
|
||||||
|
t.Fatalf("bad:\n%s", actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestContextPlan_nil(t *testing.T) {
|
func TestContextPlan_nil(t *testing.T) {
|
||||||
m := testModule(t, "plan-nil")
|
m := testModule(t, "plan-nil")
|
||||||
p := testProvider("aws")
|
p := testProvider("aws")
|
||||||
|
|
|
@ -67,7 +67,7 @@ func TestResourceConfigGet(t *testing.T) {
|
||||||
rc := NewResourceConfig(rawC)
|
rc := NewResourceConfig(rawC)
|
||||||
if tc.Vars != nil {
|
if tc.Vars != nil {
|
||||||
ctx := NewContext(&ContextOpts{Variables: tc.Vars})
|
ctx := NewContext(&ContextOpts{Variables: tc.Vars})
|
||||||
if err := rc.interpolate(ctx.walkContext(rootModulePath)); err != nil {
|
if err := rc.interpolate(ctx.walkContext(walkInvalid, rootModulePath)); err != nil {
|
||||||
t.Fatalf("err: %s", err)
|
t.Fatalf("err: %s", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
resource "aws_instance" "foo" {
|
||||||
|
num = "2"
|
||||||
|
}
|
||||||
|
|
||||||
|
output "num" {
|
||||||
|
value = "${aws_instance.foo.num}"
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
module "child" {
|
||||||
|
source = "./child"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_instance" "bar" {
|
||||||
|
foo = "${module.child.num}"
|
||||||
|
}
|
Loading…
Reference in New Issue