Home > OS >  Azure az login after successful login not to display details
Azure az login after successful login not to display details

Time:06-06

Are there any option in azure cli not to display the JSON formatted output with tenantid, subscription details after successfully authenticated using az login command.

I am building a shell script, where i first use az login then fetch secret info from keyvault using below command

az keyvault secret show --vault-name "name-of-keyvault" --name "secret-key-name" --query "value" --output tsv

and doing my requirement.

if there are option/switch like -q or --quite, not to print the output it would not clutter the output.

Being Linux i can redirect this output to stdout, but if already there is another option within the cli it will be good to know.

CodePudding user response:

Adding --help would have shown you that you can suppress the output:

--output -o : Output format.  Allowed values: json, jsonc, none, table, tsv, yaml, yamlc.  Default: json.
  • Related