I'm using azure cli from the windows terminal azure cloud shell.
I expect az keyvault secret list --vault-name myKeyVaultName to list all the secrets in my vault
but it only shows me a black screen.
What am I doing wrong? Any Suggestions?
az keyvault does not list secret
1.3k Views Asked by hannes neukermans At
1
There are 1 best solutions below
Related Questions in AZURE-CLI
- Kubernetes : How to connect production and non-production Azure CLI simultaneously through windows system?
- Azure Developer CLI does not recognize environment
- Is there any way to get a new Azure CLI token without logging out?
- Azure Service Principals are not deleting from the Azure CLI
- az functionapp config is truncating trailing bracket
- How to install azure devops extension from powershell script
- Troubleshooting GitHub Secrets: "Invalid Subscription or Tenant Level Error"
- "Directory is expected, not a file." error when using Azure CLI to download from blob storage
- Azure error writing parquet to ADLS Gen 2
- Azure container registry az acr build command times out with 404 BlobNotFound
- Error Exporting disk to a Storage account -Both configured with private endpoints in the same Vnet
- How to create Azure devops service connection via code?
- What Azure account to use to run a python script on multiple azure tenants resources?
- How to add all iterations of a project to all teams in that project?
- Is it possible to show if OAuth is being used for Azure Function App?
Related Questions in AZURE-CLOUD-SHELL
- New-AzCognitiveServicesAccount
- Azure Cloud Shell
- Azure Cloud Shell | remove app registration
- Is it possible to use an Azure JSON-View as part of a deployment script?
- Powershell script Azure SQL DB firewall
- How to set FriendlyName to Pfx certificate and upload certificate to webapp using powershell
- How to add the files in $Home directory from blob of Azure cloud shell
- How to execute python script on Azure AKS - Job Deployment
- az vmss delete ..., error: argument --force-deletion: expected one argument
- Azure Synapse - Change on "Public Network Access" destroys Workspace
- How to Run PowerBI REST API in Azure Cloud shell
- Where do python packages get installed in Azure Cloud Shell
- Getting error while trying to connect azure cloud shell in vs code
- How to Delete WEBSITE_TIME_ZONE application setting in Azure. Clicking DELETE does not remove it
- Run SQL query using powershell and AAD authentication with an SSO account
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I ran into the exact same error a few days ago with
az keyvault secret list, and tried running the command with the--debugparameter:Also refreshed my credentials by running
az loginagain but no luck. After some troubleshooting and looking through logs, I realized I had passed the incorrect vault name in the command.A similar issue on GitHub also mentions that this error can surface in case of an incorrect key vault name as the error message calls out. If none of these help, you can open a new bug report with the Azure/azure-cli repo with the error details.