From 45c7e79766d86486432dc291297a55134f424832 Mon Sep 17 00:00:00 2001 From: Justin Van Patten Date: Mon, 7 May 2018 16:35:08 -0700 Subject: [PATCH] Include link where to sign up in `pulumi login` (#1336) --- pkg/backend/cloud/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/backend/cloud/backend.go b/pkg/backend/cloud/backend.go index bc3c3e448..68d56a3d7 100644 --- a/pkg/backend/cloud/backend.go +++ b/pkg/backend/cloud/backend.go @@ -168,7 +168,7 @@ func Login(d diag.Sink, cloudURL string) (Backend, error) { fmt.Printf("Using access token from %s\n", AccessTokenEnvVar) } else { token, readerr := cmdutil.ReadConsoleNoEcho( - fmt.Sprintf("Enter your Pulumi access token from %s", cloudConsoleURL(cloudURL, "account"))) + fmt.Sprintf("Sign in to Pulumi and enter your access token from %s", cloudConsoleURL(cloudURL, "account"))) if readerr != nil { return nil, readerr }