]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/hashicorp/terraform/terraform/node_count_boundary.go
Initial transfer of provider code
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / terraform / node_count_boundary.go
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 }