func init()

in cli/cmd/state.go [59:64]


func init() {
	stateCmd.PersistentFlags().StringVarP(&StateAPILocation, "stateAPILocation", "l", "us-central1", "Location of State API endpoint")
	stateCmd.PersistentFlags().BoolVarP(&Verbose, "verbose", "v", false, "Verbose")
	stateCmd.PersistentFlags().VarP(&Out, "output", "o", "Output format. Must be one of [table, json]")
	stateCmd.PersistentFlags().StringVarP(&Project, "project", "p", "", "GCP Project ID")
}