Files
steampipe/pkg/constants/errors.go
kaidaguerre 1e3db26e8f Add support for workspace profiles - parse from config and select using --workspace arg. Closes #2510
Add support for implicit workspace. Closes #2514
If snapshot-location is a local file path, copy snapshot instead of uploading. Closes #2550
Do not show snapshot upload status if --progress=false. Closes #2517
Replace --workspace with --snapshot-location. Closes #2512
2022-10-19 13:02:24 +01:00

14 lines
375 B
Go

package constants
import (
"errors"
)
var MissingCloudTokenError = errors.New("to share snapshots to Steampipe Cloud, cloud token must be set")
// EEXISTS is the universal error string to denote that a resource already exists
const EEXISTS = "EEXISTS"
// ENOTEXISTS is the universal error string to denote that a resource does not exists
const ENOTEXISTS = "ENOTEXISTS"