]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/hashicorp/hil/eval_type.go
Move template interpolation deeper into acceptance tests
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / hil / eval_type.go
CommitLineData
bae9f6d2
JC
1package hil
2
3//go:generate stringer -type=EvalType eval_type.go
4
5// EvalType represents the type of the output returned from a HIL
6// evaluation.
7type EvalType uint32
8
9const (
10 TypeInvalid EvalType = 0
11 TypeString EvalType = 1 << iota
12 TypeBool
13 TypeList
14 TypeMap
15 TypeUnknown
16)