github.com/dougneal/terraform@v0.6.15-0.20170330092735-b6a3840768a4/terraform/node_count_boundary.go (about) 1 package terraform 2 3 // NodeCountBoundary fixes any "count boundarie" in the state: resources 4 // that are named "foo.0" when they should be named "foo" 5 type NodeCountBoundary struct{} 6 7 func (n *NodeCountBoundary) Name() string { 8 return "meta.count-boundary (count boundary fixup)" 9 } 10 11 // GraphNodeEvalable 12 func (n *NodeCountBoundary) EvalTree() EvalNode { 13 return &EvalCountFixZeroOneBoundaryGlobal{} 14 }