Skip to content

Commit 0223a20

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
2 parents d24e45b + 2e40ac5 commit 0223a20

231 files changed

Lines changed: 674 additions & 252 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

articles/azure-developer-cli/ade-integration.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Developer CLI support for Azure Deployment Environments
33
description: Learn how to integrate the Azure Developer CLI with Azure Deployment Environments
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 9/14/2024
6+
ms.date: 01/09/2026
77
ms.topic: reference
88
ms.custom: devx-track-azdevcli
99
ms.service: azure-dev-cli
@@ -15,7 +15,7 @@ The Azure Developer CLI (azd) provides support for [Azure Deployment Environment
1515

1616
## Prerequisites
1717

18-
Verify you have completed the following prerequisites to work with Azure Deployment Environments using `azd`:
18+
To work with Azure Deployment Environments using `azd`, verify you completed the following prerequisites:
1919

2020
* [Installed `azd` locally](/azure/developer/azure-developer-cli/install-azd) or have access to `azd` via Cloud Shell
2121
* [Created and configured an Azure Deployment Environment](/azure/deployment-environments/quickstart-create-and-configure-devcenter) with a dev center, project, and template catalog
@@ -33,7 +33,7 @@ You can configure `azd` to provision and deploy resources to your deployment env
3333
azd config set platform.type devcenter
3434
```
3535

36-
When `platform.type` is set to `devcenter`, all `azd` remote environment state and provisioning will leverage new dev center components. This configuration also means that the `infra` folder in your local templates will effectively be ignored. Instead, `azd` will use one of the infrastructure templates defined in your dev center catalog for resource provisioning.
36+
When `platform.type` is set to `devcenter`, all `azd` remote environment state and provisioning leverage new dev center components. This configuration also means that the `infra` folder in your local templates is ignored. Instead, `azd` uses one of the infrastructure templates defined in your dev center catalog for resource provisioning.
3737

3838
You can also disable dev center support via the following command:
3939

@@ -55,15 +55,15 @@ azd init
5555

5656
### azd up
5757

58-
The `azd up` command will package, provision, and deploy your application to Azure Deployment Environments. However, the provision stage of the `azd up` command will use the curated infrastructure-as-code templates in your remote dev center, while the deployment stage will deploy the source code in your `azd` template. While dev center mode is enabled, `azd` will ignore the `infra` folder in your local `azd` template and only provision resources using the dev center templates. The command will also prompt you for any necessary values, such as the Azure Deployment Environment project or environment type.
58+
The `azd up` command packages, provisions, and deploys your application to Azure Deployment Environments. However, the provision stage of the `azd up` command uses the curated infrastructure-as-code templates in your remote dev center, while the deployment stage deploys the source code in your `azd` template. While dev center mode is enabled, `azd` ignores the `infra` folder in your local `azd` template and only provision resources using the dev center templates. The command will also prompt you for any necessary values, such as the Azure Deployment Environment project or environment type.
5959

6060
```bash
6161
azd up
6262
```
6363

6464
### azd template list
6565

66-
The `azd template list` command will display the available infrastructure templates in your dev center catalog, rather than showing templates from the default AZD Awesome gallery. [Catalogs](/azure/deployment-environments/concept-environments-key-concepts#catalogs) provide a set of curated and approved infrastructure-as-code templates your development teams can use to create environments.
66+
The `azd template list` command displays the available infrastructure templates in your dev center catalog, rather than showing templates from the default AZD Awesome gallery. [Catalogs](/azure/deployment-environments/concept-environments-key-concepts#catalogs) provide a set of curated and approved infrastructure-as-code templates your development teams can use to create environments.
6767

6868
```bash
6969
azd template list
@@ -73,23 +73,23 @@ azd template list
7373

7474
### azd provision
7575

76-
The `azd provision` command will create new dev center environments. The command will prompt you for any missing values, such as the environment type or project. When the command runs, it will use the associated infrastructure template to provision the correct set of Azure resources for that environment. While dev center mode is enabled, `azd` will ignore the `infra` folder in your local `azd` template and only provision resources using the dev center templates.
76+
The `azd provision` command creates new dev center environments. The command prompts you for any missing values, such as the environment type or project. When the command runs, it uses the associated infrastructure template to provision the correct set of Azure resources for that environment. While dev center mode is enabled, `azd` ignores the `infra` folder in your local `azd` template and only provision resources using the dev center templates.
7777

7878
```bash
7979
azd provision
8080
```
8181

8282
### azd env list
8383

84-
The `azd env list` command will display the same list of environments you would see in the developer portal.
84+
The `azd env list` command displays the same list of environments you would see in the developer portal.
8585

8686
```bash
8787
azd env list
8888
```
8989

9090
## Tagging resources for Azure Deployment Environments
9191

92-
`azd` provisioning for Azure Deployment Environments relies on curated templates from the dev center catalog. Templates in the catalog may or may not assign tags to provisioned Azure resources for you to associate your app services with in the `azure.yaml` file. If the templates do not assign tags, you can address this issue in one of two ways:
92+
`azd` provisioning for Azure Deployment Environments relies on curated templates from the dev center catalog. Templates in the catalog may or may not assign tags to provisioned Azure resources for you to associate your app services with in the `azure.yaml` file. If the templates don't assign tags, you can address this issue in one of two ways:
9393

9494
* Work with your dev center catalog administrator to ensure the provisioned Azure resources include tags to associate them with services defined in your `azure.yaml` file.
9595
* Specify the `resourceName` in your `azure.yaml` file instead of using tags:
@@ -121,7 +121,7 @@ You can define `azd` settings for your dev centers in multiple places. Settings
121121

122122
### Environment variables
123123

124-
The following environment variables will be discovered and used by `azd`:
124+
`azd` discovers and uses the following environment variables:
125125

126126
* AZURE_DEVCENTER_NAME
127127
* AZURE_DEVCENTER_PROJECT

articles/azure-developer-cli/azd-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Explore azd config functionality
33
description: Learn how to use the azd config command and related functionality
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 12/17/2024
6+
ms.date: 01/09/2026
77
ms.service: azure-dev-cli
88
ms.topic: how-to
99
ms.custom: devx-track-azdevcli, devx-track-bicep

articles/azure-developer-cli/azd-extensibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Customize your Azure Developer CLI workflows using command and event hook
33
description: Explores how to use Azure Developer CLI hooks to customize deployment pipelines
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 9/13/2024
6+
ms.date: 01/09/2026
77
ms.topic: reference
88
ms.custom: devx-track-azdevcli
99
ms.service: azure-dev-cli

articles/azure-developer-cli/azd-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Developer CLI's azure.yaml schema
33
description: Describes the schema for the Azure Developer CLI azure.yaml file
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 9/14/2024
6+
ms.date: 01/09/2026
77
ms.topic: reference
88
ms.custom: devx-track-azdevcli
99
ms.service: azure-dev-cli

articles/azure-developer-cli/azd-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Developer CLI templates
33
description: Learn about what Azure Developer CLI templates are, how to work with them, and how to get started using them with your apps.
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 09/13/2024
6+
ms.date: 01/09/2026
77
ms.topic: how-to
88
ms.custom: devx-track-azdevcli, build-2023
99
ms.service: azure-dev-cli

articles/azure-developer-cli/azure-deployment-stacks-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure deployment stacks integration with the Azure Developer CLI
33
description: How to use Azure deployment stacks with the Azure Developer CLI (azd)
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 10/24/2024
6+
ms.date: 01/09/2026
77
ms.service: azure-dev-cli
88
ms.topic: how-to
99
ms.custom: devx-track-azdevcli

articles/azure-developer-cli/configure-template-sources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure template sources
33
description: Learn how to configure the Azure Developer CLI to use different template sources
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 9/13/2024
6+
ms.date: 01/09/2026
77
ms.service: azure-dev-cli
88
ms.topic: how-to
99
ms.custom: devx-track-azdevcli

articles/azure-developer-cli/demo-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Enable demo mode
33
description: How to enable demo mode
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 11/19/2024
6+
ms.date: 01/09/2026
77
ms.service: azure-dev-cli
88
ms.topic: how-to
99
ms.custom: devx-track-azdevcli

articles/azure-developer-cli/environment-variables-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Environment variables FAQ
33
description: Discover answers to frequently asked questions about environment variables
44
author: alexwolfmsft
55
ms.author: alexwolf
6-
ms.date: 09/13/2024
6+
ms.date: 01/09/2026
77
ms.service: azure-dev-cli
88
ms.topic: how-to
99
ms.custom: devx-track-azdevcli

articles/azure-developer-cli/faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
description: Get answers to commonly asked questions about Azure Developer CLI.
55
author: alexwolfmsft
66
ms.author: alexwolf
7-
ms.date: 9/14/2024
7+
ms.date: 01/09/2026
88
ms.topic: article
99
ms.custom: devx-track-azdevcli, build-2023
1010
ms.service: azure-dev-cli

0 commit comments

Comments
 (0)