az sig image-version create --tags break in version 2.38.0-1
See original GitHub issueInstall latest version Azure CLI on ubuntu 1804
run az sig image-version create .... --tags test=true
encounter this error Parameter 'tags' must be of type 'dict[str, str]'
, downgrade version into 2.37.0-1, it works well.
Issue Analytics
- State:
- Created a year ago
- Reactions:3
- Comments:8 (2 by maintainers)
Top Results From Across the Web
az sig image-version | Microsoft Learn
Create a new image version. This operation might take a long time depending on the replicate region number. Use "--no-wait" is advised. Azure...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have submitted a PR #23393 to fix this issue, and it will be released in this sprint 09-06
We’ve been experiencing the same issue in our pipeline build.
As a work-around, we broke the tagging portion out into a separate
az tag create
operation. We were able to derive the required--resource-id
flag using the same variables/parameters we were feeding to the originalaz sig image-version create
command. This is working.Also, it looks like there could be another approach using the
--set
flag, as outlined here: https://github.com/Azure/azure-cli/issues/23191#issuecomment-1185400727