You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[azure-cli]: add bicepVersion for use with installBicep (#1227)
Add `bicepVersion` parameter (defaulting to `latest`) to optionally
specify a specific Bicep version when `installBicep` is `true`.
Co-authored-by: Jurjen Oskam <[email protected]>
Co-authored-by: Daniel Doyle <[email protected]>
"description": "Installs the Azure CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",
@@ -23,6 +23,14 @@
23
23
"description": "Optionally install Azure Bicep",
24
24
"default": false
25
25
},
26
+
"bicepVersion": {
27
+
"type": "string",
28
+
"proposals": [
29
+
"latest"
30
+
],
31
+
"default": "latest",
32
+
"description": "Select or enter a Bicep version. ('latest' or a specic version such as 'v0.31.92')"
33
+
},
26
34
"installUsingPython": {
27
35
"type": "boolean",
28
36
"description": "Install Azure CLI using Python instead of pipx",
0 commit comments