summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorKristian Aune <kraune@verizonmedia.com>2022-03-14 10:56:03 +0100
committerKristian Aune <kraune@verizonmedia.com>2022-03-14 10:56:03 +0100
commitcc20416e7aafbf207b87cff32e9af8f7083d01ff (patch)
tree0c0aa748f1f2862fc94641af8f7b55e1423fc84a /client
parentfed4f6dddba35fe13b9d10dc79485fa7d4d97afb (diff)
Correct path
Diffstat (limited to 'client')
-rw-r--r--client/go/cmd/api_key.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/cmd/api_key.go b/client/go/cmd/api_key.go
index 592ab14f11f..cacfe3fd180 100644
--- a/client/go/cmd/api_key.go
+++ b/client/go/cmd/api_key.go
@@ -106,7 +106,7 @@ func printPublicKey(system vespa.System, apiKeyFile, tenant string) error {
log.Printf("\nThis is your public key:\n%s", color.GreenString(string(pemPublicKey)))
log.Printf("Its fingerprint is:\n%s\n", color.CyanString(fingerprint))
log.Print("\nTo use this key in Vespa Cloud click 'Add custom key' at")
- log.Printf(color.CyanString("%s/tenant/%s/keys"), system.ConsoleURL, tenant)
+ log.Printf(color.CyanString("%s/tenant/%s/account/keys"), system.ConsoleURL, tenant)
log.Print("and paste the entire public key including the BEGIN and END lines.")
return nil
}