Skip to content

Commit 8120525

Browse files
Merge pull request #290381 from RoseHJM/ade-azd-update-1
ADE - azd update
2 parents c039e84 + 1e1c94a commit 8120525

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

articles/deployment-environments/concept-azure-developer-cli-with-deployment-environments.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
22
title: Use Azure Developer CLI with Azure Deployment Environments
3-
description: Understand ADE and `azd` work together to provision application infrastructure and deploy application code to the new infrastructure.
3+
description: Understand how ADE and `azd` work together to provision application infrastructure and deploy application code to the new infrastructure.
44
author: RoseHJM
55
ms.author: rosemalcolm
66
ms.service: azure-deployment-environments
77
ms.topic: concept-article
8-
ms.date: 10/11/2024
8+
ms.date: 11/11/2024
99

10-
# Customer intent: As a platform engineer, I want to understand ADE and `azd` work together to provision application infrastructure and deploy application code to the new infrastructure.
10+
# Customer intent: As a platform engineer, I want to understand how ADE and `azd` work together to provision application infrastructure and deploy application code to the new infrastructure.
1111

1212
---
1313

14-
# Use Azure Developer CLI with Azure Deployment Environments
14+
# Azure Developer CLI and Azure Deployment Environments
1515

16-
In this article, you learn about Azure Developer CLI (`azd`) and how it works with Azure Deployment Environments (ADE) to provision application infrastructure and deploy application code to the new infrastructure.
16+
In this article, you learn about Azure Developer CLI (`azd`) and how it works with Azure Deployment Environments (ADE) to simplify the process of provisioning application infrastructure and deploying application code to the new infrastructure.
1717

1818
`azd` is an open-source command-line tool that provides developer-friendly commands that map to key stages in your workflow. You can install `azd` locally on your machine or use it in other environments.
1919

20-
With ADE, you can create environments from an environment definition in a catalog attached to your dev center. By adding `azd`, you can deploy your application code to the new infrastructure.
20+
With ADE, you can create environments from an environment definition in a catalog attached to your dev center, or by using the [ADE extensibilty model to execute deployments](how-to-configure-extensibility-model-custom-image.md). By adding `azd`, you can streamline the process of provisioning infrastructure and deploying code to the cloud.
2121

2222
## How does `azd` work with ADE?
2323

@@ -66,8 +66,7 @@ Most `azd` templates also optionally include one or more of the following folder
6666

6767
Azure Deployment Environments catalogs consist of environment definitions: IaC templates that define the infrastructure resources that are provisioned for a deployment environment. Azure Developer CLI uses environment definitions in the catalog attached to the dev center to provision new environments.
6868

69-
> [!NOTE]
70-
> Currently, Azure Developer CLI works with ARM templates stored in the Azure Deployment Environments dev center catalog.
69+
Azure Developer CLI works with ARM templates stored in the Azure Deployment Environments dev center catalog. It also supports other IaC templates, such as Bicep and Terraform through the ADE extensibility model. To learn how to configure the ADE extensibility model, see [Azure Deployment Environments extensibility model](how-to-configure-extensibility-model-custom-image.md).
7170

7271
To properly support certain Azure Compute services, Azure Developer CLI requires more configuration settings in the IaC template. For example, you must tag app service hosts with specific information so that `azd` knows how to find the hosts and deploy the app to them.
7372

@@ -84,8 +83,6 @@ Changes include:
8483
- Tag resources in *azure.yaml* with specific information so that `azd` knows how to find the hosts and deploy the app to them.
8584
- Learn about [Tagging resources for Azure Deployment Environments](/azure/developer/azure-developer-cli/ade-integration?branch=main#tagging-resources-for-azure-deployment-environments).
8685
- Learn about [Azure Developer CLI's azure.yaml schema](/azure/developer/azure-developer-cli/azd-schema).
87-
- Configure dev center settings like environment variables, `azd` environment configuration, `azd` project configuration, and user configuration.
88-
- Learn about [Configuring dev center settings](/azure/developer/azure-developer-cli/ade-integration?branch=main#configure-dev-center-settings).
8986

9087
To learn more about how to make your ADE environment definition compatible with `azd`, see [Make your project compatible with Azure Developer CLI](/azure/developer/azure-developer-cli/ade-integration).
9188

articles/deployment-environments/how-to-create-environment-with-azure-developer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Create and access an environment by using the Azure Developer CLI
2+
title: Create an environment by using the Azure Developer CLI
33
titleSuffix: Azure Deployment Environments
44
description: Learn how to create an environment in an Azure Deployment Environments project by using the Azure Developer CLI.
55
author: RoseHJM
@@ -15,7 +15,7 @@ ms.date: 05/30/2024
1515

1616
# Create an environment by using the Azure Developer CLI
1717

18-
In this article, you install the Azure Developer CLI (AZD), create a new deployment environment by provisioning your app infrastructure to Azure Deployment Environments, and deploy your app code onto the provisioned deployment environment.
18+
In this article, you install the Azure Developer CLI (AZD), create a new deployment environment by provisioning your app infrastructure to Azure Deployment Environments (ADE), and deploy your app code onto the provisioned deployment environment.
1919

2020
Azure Developer CLI (AZD) is an open-source tool that accelerates the time it takes for you to get your application from local development environment to Azure. AZD provides best practice, developer-friendly commands that map to key stages in your workflow, whether you're working in the terminal, your editor or integrated development environment (IDE), or CI/CD (continuous integration/continuous deployment).
2121

@@ -27,7 +27,7 @@ You should:
2727
- Be familiar with Azure Deployment Environments. Review [What is Azure Deployment Environments?](overview-what-is-azure-deployment-environments.md) and [Key concepts for Azure Deployment Environments](concept-environments-key-concepts.md).
2828
- Create and configure a dev center with a project, environment types, and a catalog. Use the following article as guidance:
2929
- [Quickstart: Configure Azure Deployment Environments](/azure/deployment-environments/quickstart-create-and-configure-devcenter).
30-
- A catalog attached to your dev center.
30+
- Have catalog attached to your dev center.
3131

3232
## Prepare to work with AZD
3333

@@ -143,7 +143,7 @@ AZD uses an *azure.yaml* file to define the environment. The azure.yaml file def
143143

144144
1. In Visual Studio Code, open the folder that contains your application code.
145145

146-
1. Open the command palette, and enter *Azure Developer CLI init*, then from the list, select **Azure Developer CLI (azd): init**.
146+
1. Open the command palette, and enter *Azure Developer CLI init*, then select **Azure Developer CLI (azd): init**.
147147

148148
:::image type="content" source="media/how-to-create-environment-with-azure-developer/command-palette-azure-developer-initialize.png" alt-text="Screenshot of the Visual Studio Code command palette with Azure Developer CLI (azd): init highlighted." lightbox="media/how-to-create-environment-with-azure-developer/command-palette-azure-developer-initialize.png":::
149149

0 commit comments

Comments
 (0)