From 5900a4dfedbcee73b42ef4b17d766afad1cdb8e3 Mon Sep 17 00:00:00 2001 From: Will Nielsen <48866+wjn@users.noreply.github.com> Date: Wed, 11 Aug 2021 13:19:33 -0500 Subject: [PATCH] newrelic profile add -n > --profile `newrelic profile add` no longer recognizes the `-n` shorthand flag. The correct and current syntax should be `newrelic profile add --profile ` --- .../automate-workflows/get-started-new-relic-cli.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/markdown-pages/automate-workflows/get-started-new-relic-cli.mdx b/src/markdown-pages/automate-workflows/get-started-new-relic-cli.mdx index 458e2fc5e..3e1f39d66 100644 --- a/src/markdown-pages/automate-workflows/get-started-new-relic-cli.mdx +++ b/src/markdown-pages/automate-workflows/get-started-new-relic-cli.mdx @@ -89,9 +89,9 @@ Run the [`profiles add`](https://github.com/newrelic/newrelic-cli/blob/master/do ```sh lineNumbers=false # Create the tutorial account for the US region -newrelic profiles add -n tutorial --apiKey YOUR_NEW_RELIC_USER_KEY -r YOUR_REGION +newrelic profiles add --profile tutorial --apiKey YOUR_NEW_RELIC_USER_KEY -r YOUR_REGION # Set the profile as defaults -newrelic profiles default -n tutorial +newrelic profiles default --profile tutorial ```