Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/changefromtfplan.go
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ func allDone(ctx context.Context, activeQueries map[uuid.UUID]bool, lf log.Field
func init() {
rootCmd.AddCommand(changeFromTfplanCmd)

changeFromTfplanCmd.PersistentFlags().String("changes-url", "https://api.prod.overmind.tech", "The changes service API endpoint")
changeFromTfplanCmd.PersistentFlags().String("changes-url", "", "The changes service API endpoint (defaults to --url)")
changeFromTfplanCmd.PersistentFlags().String("frontend", "https://app.overmind.tech", "The frontend base URL")

changeFromTfplanCmd.PersistentFlags().String("tfplan-json", "./tfplan.json", "Parse changing items from this terraform plan JSON file. Generate this using 'terraform show -json PLAN_FILE'")
Expand Down
2 changes: 1 addition & 1 deletion cmd/getaffectedbookmarks.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func GetAffectedBookmarks(signals chan os.Signal, ready chan bool) int {
func init() {
rootCmd.AddCommand(getAffectedBookmarksCmd)

getAffectedBookmarksCmd.PersistentFlags().String("bookmark-url", "https://api.prod.overmind.tech/", "The bookmark service API endpoint")
getAffectedBookmarksCmd.PersistentFlags().String("bookmark-url", "", "The bookmark service API endpoint (defaults to --url)")
getAffectedBookmarksCmd.PersistentFlags().String("frontend", "https://app.overmind.tech/", "The frontend base URL")

getAffectedBookmarksCmd.PersistentFlags().String("snapshot-uuid", "", "The UUID of the snapshot that should be checked.")
Expand Down
2 changes: 1 addition & 1 deletion cmd/getbookmark.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func GetBookmark(signals chan os.Signal, ready chan bool) int {
func init() {
rootCmd.AddCommand(getBookmarkCmd)

getBookmarkCmd.PersistentFlags().String("bookmark-url", "https://api.prod.overmind.tech/", "The bookmark service API endpoint")
getBookmarkCmd.PersistentFlags().String("bookmark-url", "", "The bookmark service API endpoint (defaults to --url)")
getBookmarkCmd.PersistentFlags().String("frontend", "https://app.overmind.tech/", "The frontend base URL")

getBookmarkCmd.PersistentFlags().String("uuid", "", "The UUID of the bookmark that should be displayed.")
Expand Down
2 changes: 1 addition & 1 deletion cmd/getsnapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func GetSnapshot(signals chan os.Signal, ready chan bool) int {
func init() {
rootCmd.AddCommand(getSnapshotCmd)

getSnapshotCmd.PersistentFlags().String("snapshot-url", "https://api.prod.overmind.tech/", "The snapshot service API endpoint")
getSnapshotCmd.PersistentFlags().String("snapshot-url", "", "The snapshot service API endpoint (defaults to --url)")
getSnapshotCmd.PersistentFlags().String("frontend", "https://app.overmind.tech/", "The frontend base URL")

getSnapshotCmd.PersistentFlags().String("uuid", "", "The UUID of the snapshot that should be displayed.")
Expand Down