Open
Description
Hi, Team.
When I added the azure-cli
feature to the devcontainer settings, I enabled the following option:
"installBicep": true
Because it's a part of Azure CLI option, I was expecting that I would be able to use the following command:
az bicep version
However, it doesn't work. Rather it works in the following way:
bicep --version
It means that the Bicep CLI works as a standalone CLI instead of the part of Azure CLI. And I found the following codebase:
features/src/azure-cli/install.sh
Lines 205 to 208 in 7fa9011
Is there a reason that we use the standalone Bicep CLI, rather than Azure CLI integrated one?