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
- How to script scaling a Website from Small to Large?
- Azure Application Insights, how to change daily cap by Azure CLI
- List my custom images Azure CLI
- Create VM and associate the VM to existing virtual network
- How to implement automated login without user interaction into azure portal from VSTS using azure CLI & power shell script
- Using Azure CLI in Jenkins pipeline
- List All Deployment Slots in Azure
- Script to backup and restore Azure Active Directory password hashes
- How ubuntu parameter by uuidgen and remove "-" format
- Azure create servicePrincipal results in One or more properties contains invalid values
- az group delete -n $v show "ValidationError: Parameter 'resource_group_name' must conform to the following pattern"
- Find unused storage account azure ARM
- How to avoid error "conda --version: conda not found" in az ml run --submit-script command?
- How JMESPath summary data
- how to filter log messages in Azure for CLI command az monitor activity-log list
Related Questions in AZURE-CLOUD-SHELL
- Cloud Shell docker support
- How to prevent the azure cloud shell to show directories in solid green?
- Programmatically Set Up Azure Cloud Shell
- Where are files created in Azure Shell text editor located in Azure Portal?
- Azure Cloud Shell | remove app registration
- Azure Cloud Shell
- Failed to provision a cloud shell, Azure error
- Moving the location of the cloud console in Azure
- Unable to login Azure cloud shell with Azure Authenticator App
- Unable to create SQL database in Azure CLI
- JMESPath query on combining search with ? and contains keyword in azure cloudshell bash cli
- How to fix core dump error on Azure Cloud Shell?
- az keyvault does not list secret
- Azure container registry repository or image delete giving error while executing using Azure CLI or Command Shell
- curl/wget cannot run in Azure Batch
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 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.