]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - terraform/instancetype.go
Merge branch 'fix_read_test' of github.com:alexandreFre/terraform-provider-statuscake
[github/fretlink/terraform-provider-statuscake.git] / terraform / instancetype.go
1 package terraform
2
3 //go:generate stringer -type=InstanceType instancetype.go
4
5 // InstanceType is an enum of the various types of instances store in the State
6 type InstanceType int
7
8 const (
9 TypeInvalid InstanceType = iota
10 TypePrimary
11 TypeTainted
12 TypeDeposed
13 )