From 7465d3761d4837b8acd4fc9b8a708a9d8b8f8fc8 Mon Sep 17 00:00:00 2001 From: tmalik <167480759+tmalikconfluent@users.noreply.github.com> Date: Wed, 4 Dec 2024 10:34:28 -0600 Subject: [PATCH] [CLI-3317] Add user-tracking to the URL for cloud-signup (#2964) --- internal/cloud-signup/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cloud-signup/command.go b/internal/cloud-signup/command.go index 81ca302249..57e724e4cc 100644 --- a/internal/cloud-signup/command.go +++ b/internal/cloud-signup/command.go @@ -29,7 +29,7 @@ func New(prerunner pcmd.PreRunner) *cobra.Command { } func (c *command) cloudSignup(_ *cobra.Command, _ []string) error { - signupUrl := "https://www.confluent.io/get-started/" + signupUrl := "https://www.confluent.io/get-started/?from=cli" output.Printf(c.Config.EnableColor, "You will now be redirected to the Confluent Cloud sign up page in your browser. If you are not redirected, please use the following link: %s\n", signupUrl) if err := form.ConfirmEnter(); err != nil {