You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.WithContext(ctx).WithFields(lf).Debug("Connecting to overmind API")
175
+
170
176
ctx, err=ensureToken(ctx, signals)
171
177
iferr!=nil {
172
-
log.WithContext(ctx).WithError(err).WithFields(lf).Error("failed to authenticate")
178
+
log.WithContext(ctx).WithFields(lf).WithField("apikey-url", viper.GetString("apikey-url")).WithError(err).Error("failed to authenticate")
173
179
return1
174
180
}
175
181
@@ -449,7 +455,7 @@ func init() {
449
455
changeFromTfplanCmd.PersistentFlags().String("changes-url", "https://api.prod.overmind.tech", "The changes service API endpoint")
450
456
changeFromTfplanCmd.PersistentFlags().String("frontend", "https://app.overmind.tech", "The frontend base URL")
451
457
452
-
changeFromTfplanCmd.PersistentFlags().String("tfplan-json", "./tfplan.json", "Parse changing items from this terraform plan JSON file. Generate this using `terraform show -json PLAN_FILE`")
458
+
changeFromTfplanCmd.PersistentFlags().String("tfplan-json", "./tfplan.json", "Parse changing items from this terraform plan JSON file. Generate this using 'terraform show -json PLAN_FILE'")
453
459
454
460
changeFromTfplanCmd.PersistentFlags().String("title", "", "Short title for this change.")
455
461
changeFromTfplanCmd.PersistentFlags().String("description", "", "Quick description of the change.")
0 commit comments