You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraformDummyRepo2/vendor/github.com/hashicorp/terraform-plugin-sdk/v2/terraform/instancetype.go

14 lines
293 B
Go

package terraform
//go:generate go run golang.org/x/tools/cmd/stringer -type=instanceType instancetype.go
// instanceType is an enum of the various types of instances store in the State
type instanceType int
const (
typeInvalid instanceType = iota
typePrimary
typeTainted
typeDeposed
)