]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blobdiff - vendor/github.com/hashicorp/terraform/terraform/context_graph_type.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / terraform / context_graph_type.go
index 084f0105ddd2e539c6b13e8db871fdcf9ec07889..0a424a01d1a16457a70471589f33e3d653425f70 100644 (file)
@@ -14,8 +14,8 @@ const (
        GraphTypePlan
        GraphTypePlanDestroy
        GraphTypeApply
-       GraphTypeInput
        GraphTypeValidate
+       GraphTypeEval // only visits in-memory elements such as variables, locals, and outputs.
 )
 
 // GraphTypeMap is a mapping of human-readable string to GraphType. This
@@ -23,10 +23,10 @@ const (
 // graph types.
 var GraphTypeMap = map[string]GraphType{
        "apply":        GraphTypeApply,
-       "input":        GraphTypeInput,
        "plan":         GraphTypePlan,
        "plan-destroy": GraphTypePlanDestroy,
        "refresh":      GraphTypeRefresh,
        "legacy":       GraphTypeLegacy,
        "validate":     GraphTypeValidate,
+       "eval":         GraphTypeEval,
 }