diff options
author | Paul Yu <paul.d.yu@gmail.com> | 2022-11-23 23:18:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-23 23:18:22 +0300 |
commit | 133b4cf23c6e4d6679940a8806f76877790c7f45 (patch) | |
tree | 017c6027e84089f6f99e862dd9c7bc9858e9b3a2 /test/azure-cli/scenarios.json | |
parent | c4648ab98cdeeb520e7e629c5db4a471ec802954 (diff) |
Optionally install Azure Bicep as part of azure-cli feature (#305)
* Adding azure-cli bicep installer to correctly install on arm64 containers
* Adding a few updates following @joshspicer's review.
Diffstat (limited to 'test/azure-cli/scenarios.json')
-rw-r--r-- | test/azure-cli/scenarios.json | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/test/azure-cli/scenarios.json b/test/azure-cli/scenarios.json index aa21f72..cc1fd75 100644 --- a/test/azure-cli/scenarios.json +++ b/test/azure-cli/scenarios.json @@ -1,6 +1,6 @@ { "install_extensions": { - "image": "ubuntu:focal", + "image": "mcr.microsoft.com/devcontainers/base:jammy", "user": "vscode", "features": { "azure-cli": { @@ -8,5 +8,15 @@ "extensions": "aks-preview,amg,containerapp" } } + }, + "install_bicep": { + "image": "mcr.microsoft.com/devcontainers/base:jammy", + "user": "vscode", + "features": { + "azure-cli": { + "version": "latest", + "installBicep": true + } + } } }
\ No newline at end of file |