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
Copy file name to clipboardExpand all lines: articles/deployment-environments/concept-azure-developer-cli-with-deployment-environments.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,23 @@
1
1
---
2
2
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.
4
4
author: RoseHJM
5
5
ms.author: rosemalcolm
6
6
ms.service: azure-deployment-environments
7
7
ms.topic: concept-article
8
-
ms.date: 10/11/2024
8
+
ms.date: 11/11/2024
9
9
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.
11
11
12
12
---
13
13
14
-
# Use Azure Developer CLI with Azure Deployment Environments
14
+
# Azure Developer CLI and Azure Deployment Environments
15
15
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.
17
17
18
18
`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.
19
19
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.
21
21
22
22
## How does `azd` work with ADE?
23
23
@@ -66,8 +66,7 @@ Most `azd` templates also optionally include one or more of the following folder
66
66
67
67
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.
68
68
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).
71
70
72
71
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.
73
72
@@ -84,8 +83,6 @@ Changes include:
84
83
- Tag resources in *azure.yaml* with specific information so that `azd` knows how to find the hosts and deploy the app to them.
85
84
- Learn about [Tagging resources for Azure Deployment Environments](/azure/developer/azure-developer-cli/ade-integration?branch=main#tagging-resources-for-azure-deployment-environments).
86
85
- 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).
89
86
90
87
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).
Copy file name to clipboardExpand all lines: articles/deployment-environments/how-to-create-environment-with-azure-developer.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Create and access an environment by using the Azure Developer CLI
2
+
title: Create an environment by using the Azure Developer CLI
3
3
titleSuffix: Azure Deployment Environments
4
4
description: Learn how to create an environment in an Azure Deployment Environments project by using the Azure Developer CLI.
5
5
author: RoseHJM
@@ -15,7 +15,7 @@ ms.date: 05/30/2024
15
15
16
16
# Create an environment by using the Azure Developer CLI
17
17
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.
19
19
20
20
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).
21
21
@@ -27,7 +27,7 @@ You should:
27
27
- 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).
28
28
- Create and configure a dev center with a project, environment types, and a catalog. Use the following article as guidance:
@@ -143,7 +143,7 @@ AZD uses an *azure.yaml* file to define the environment. The azure.yaml file def
143
143
144
144
1. In Visual Studio Code, open the folder that contains your application code.
145
145
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**.
147
147
148
148
:::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":::
0 commit comments