From c0453c44b58be8552c72c0e84eb8f15f004ad919 Mon Sep 17 00:00:00 2001 From: Niraj Tolia Date: Thu, 20 Oct 2022 20:07:07 -0700 Subject: [PATCH] Reoder env help output for consistency with docs (#1272) ## Description Trivial change ## Type of change - [x] :hamster: Trivial/Minor --- src/cli/help/env.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/help/env.go b/src/cli/help/env.go index d86fb6d59..40e92ba0a 100644 --- a/src/cli/help/env.go +++ b/src/cli/help/env.go @@ -68,8 +68,8 @@ var ( } azureEVs = []envVar{ {azure, "AZURE_CLIENT_ID", "Client ID for your Azure AD application used to access your M365 tenant."}, - {azure, "AZURE_CLIENT_SECRET", "Azure secret for your Azure AD application used to access your M365 tenant."}, {azure, "AZURE_TENANT_ID", "ID for the M365 tenant where the Azure AD application is registered."}, + {azure, "AZURE_CLIENT_SECRET", "Azure secret for your Azure AD application used to access your M365 tenant."}, } awsEVs = []envVar{ {aws, "AWS_ACCESS_KEY_ID", "Access key for an IAM user or role for accessing an S3 bucket."},