We’re pleased to announce that the July 2023 release (1.1.0) of the Azure Developer CLI (azd) is now available. As always, you can learn about how to get started with the Azure Developer CLI by visiting our official documentation.
In case you missed it, the Azure Developer CLI reached stable at Microsoft Build in May!
Here’s what’s new in azd since our May release:
- Support for resource group-scoped deployments (azure-dev#2083)
- View reference documentation more quickly with
--docs(azure-dev#1433) azdGitHub Action now in the marketplace (azure-dev#2207)azdas a Dev Container feature (azure-dev#1118)- ARM native builds of
azd(azure-dev#2275) - Visual Studio Code updates:
azure.yamldiagnostics for invalid paths (azure-dev#1388)azure.yamlrename refactoring for folder updates(azure-dev#1389)- Drag-and-drop add services to your
azure.yaml(azure-dev#2448)
Resource group-scoped deployments
As of the 1.1.0 release, we’ve expanded our deployment scopes to include resource groups for Bicep. Prior to this release, azd only supported subscription scope deployments.
In order to use resource group scoped deployments, you need to enable this feature in the CLI using the following command as all features now start in alpha stage.
azd config set alpha.resourceGroupDeployments on
When running azd provision or azd up on a repository with resource group scope infrastructure as code, you’ll now be prompted to create a new resource group or select an existing resource group by name to provision to.

Reference documentation more quickly with --docs
To make jumping to azd documentation simpler, we’ve added a new --docs flag on all commands! Now, when you run something like azd deploy --docs, a browser tab opens and jumps straight to the reference documentation for deploy. From there, you can explore any other Azure Developer CLI documentation you might need — no URL required!
azd as a GitHub Action
Previously, to use the Azure Developer CLI in a GitHub Action, you were required to “manually” install azd via curl or use a bulky all-in-one image that potentially included more dependencies than you needed (for example, language runtime dependencies). This requirement resulted in a slow start time for pipeline runs as the image was large. The image also included many dependencies that may be irrelevant to your application. For example, if I’m using a Python and React template, I may not need or want Java installed, or vice versa.
As of this release, we’ve published azd as a GitHub Action. Similar to other familiar setup-* GitHub Actions, you can now find setup-azd in the GitHub Actions Marketplace. As part of your dependency setup in CI/CD, you can now add the following to install azd.
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install azd
uses: Azure/setup-azd@v0.1.0
azd as a Dev Container feature
As of this release, we have also shipped azd as a Dev Container feature! If you’re unfamiliar, Development Containers (or Dev Containers for short) allows you to use a container as a full-featured development environment. Dev Containers are a great way to streamline local development environment setup via configuration checked into source control.
With our new azd Dev Container feature, you can include the following to your .devcontainer.json to install the Azure Developer CLI:
"features": {
"ghcr.io/azure/azure-dev/azd:latest": {}
}
Alternatively, you can install the Remote Containers extension and add Dev Container configurations to your project using the following steps:
- “Control + Shift + P” (Windows) or “Command + Shift + P” (Mac) to open the Command Palette
- Type “Dev Containers: Add Dev Containers configuration files…”
- Select a predefined container definition
- Select a version
- Select features to install (for example “Azure Developer CLI”)
At the end, you have a .devcontainer directory in your workspace with a devcontainer.json you can further modify.
A special thank you to aaronpowell for their contributions to this feature and for updating our templates to use this new feature!
ARM native builds of azd
We have made an important update to the install-azd.sh so now when you run the script with the -a arm64 flag, it installs the Arm64 version of azd specifically.
For example, this new support allows someone to install the ARM build of azd creating a Dev Container or Codespace:
curl -fsSL https://aka.ms/install-azd.sh | bash -s -- -a $(dpkg --print-architecture)
If you don’t specify the -a flag, the script defaults to installing the amd64 version on macOS, and it fails on Linux, just like before.
Visual Studio Code updates
In this release, we’ve added many features to help make editing your azure.yaml file simpler.
azure.yaml diagnostics for invalid paths
First, we have added diagnostics (for example, errors) to report when a folder referenced as a service in your azure.yaml doesn’t exist. Invalid paths are underlined in the file, and problems are listed in the Problems window to help ensure you have a valid configuration for azd.

azure.yaml rename refactoring for folder updates
Next, we have added a rename refactoring for azure.yaml. If you rename or move folders in your project, you’ll be prompted to automatically refactor your azure.yaml file’s project property values.

Drag-and-drop add services into your azure.yaml
Finally, we’ve added an editing feature that allows you to drag a folder into your azure.yaml while holding Shift to automatically add a service to the file with proper tab stops at project, language, and host and enums to help select the right values in those places. Helping you write less YAML, one feature at a time!

Other changes and enhancements
We have also added smaller enhancements and fixed issues requested by users that should improve your experience working with the Azure Developer CLI. Some notable changes include:
- Smaller features
- Support for build-args to Docker builds (azure-dev#1270)
- Investigate using the GH CLI auth UX in Codespaces (azure-dev#2332)
- Improved
azd package/azd deployoutput for Dockerized projects (azure-dev#898)
- Bug fixes for
azdcoreazd pipeline configwith federated credentials now supports different branches (azure-dev#2040, azure-dev#2428)- Validate environment exists when running
azd env select(azure-dev#2306) azd env refreshalters numeric string value in.envfile (azure-dev#2307)azd auth loginfails due toreauthentication required, run azd auth loginto log in (azure-dev#2299)azd pipeline configresults in role assignment error (azure-dev#2287)azd downdoesn’t purge cognitive service (azure-dev#1941azd auth loginfails after updating to MSAL 1.0 when doing log in for the first time (azure-dev#2258)- Action URL is invalid after running
pipeline config(azure-dev#2236) - Running Bicep fails in a blank Ubuntu container (azure-dev#2197)
azure.yamlschema says default shell is “sh” but error says otherwise (azure-dev#2346)- Errors interrupt spinner, producing screen output harder to interpret (azure-dev#2353)
- Forward slashes replaced by backslash for within inline hook scripts (azure-dev#2365)
- Subscription and location aren’t being saved after provisioning attempt (azure-dev#2325)
- Remove infrastructure outputs from
.envonazd down(azure-dev#2217) - Login doesn’t produce nonzero exit code on failure (azure-dev#2221)
- Bug fixes for Visual Studio Code
- VS Code issue when running show with no init’d project (azure-dev#2296)
- Bug fixes for Azure host support (for example, Azure Container Apps and Azure Kubernetes Service)
- Unable to deploy to a container app that uses workload profiles (azure-dev#2402)
azddeployment fails on a valid ingress that has endpoints assigned (azure-dev#2390)- Managed HSMs aren’t purged (azure-dev#2348)
- Container App deploy fails without registry admin user enabled (azure-dev#2244)
- Service deployment to AKS failure on verification step due to Redis targetPort tag being assigned as string (azure-dev#2270)
Community contributions
We’d also like to extend a special thanks to the community contributors of this release:
- liamchampton – fix quickstart commands on the README in the todo projects (azure-dev#2436)
- JayDoubleu – Update bicep.go (bump bicep to 0.17.1) (azure-dev#2310
You can use the Azure Developer CLI from:
- Your terminal of choice on Windows, Linux, or macOS.
- Visual Studio Code or GitHub Codespaces by downloading the extension from the Marketplace, or installing it directly from the extension view (
Ctrl+Shift+X, orCmd+Shift+Xfor macOS) in Visual Studio Code. - Visual Studio by enabling the preview feature flag. You can learn more about the Azure Developer CLI from our official documentation. If you run into any problems or have suggestions, file an issue or start a discussion in the Azure Developer CLI repository.
0 comments