Skip to content

Commit 727ae3f

Browse files
committed
Freshness pass
1 parent e2e9cd9 commit 727ae3f

1 file changed

Lines changed: 25 additions & 23 deletions

File tree

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,56 @@
11
---
22
title: Install the devcenter Azure CLI extension
33
titleSuffix: Azure Deployment Environments
4-
description: Learn how to install the Azure CLI and the Deployment Environments CLI extension so you can create Deployment Environments resources from the command line.
4+
description: Learn how to install the Azure CLI extension for Azure Deployment Environments so you can create resources from the command line.
55
services: deployment-environments
66
ms.service: deployment-environments
77
ms.custom: build-2023, devx-track-azurecli
88
ms.topic: how-to
99
ms.author: rosemalcolm
1010
author: RoseHJM
11-
ms.date: 04/25/2023
11+
ms.date: 11/22/2023
1212
#Customer intent: As a platform engineer, I want to install the devcenter extension so that I can create Deployment Environments resources from the command line.
1313
---
1414

15-
# Azure Deployment Environments Azure CLI extension
15+
# Install the Azure CLI extension for Azure Deployment Environments
1616

17-
In addition to the Azure admin portal and the developer portal, you can use the Deployment Environments Azure CLI extension to create resources. Azure Deployment Environments and Microsoft Dev Box use the same Azure CLI extension, which is called *devcenter*.
17+
In addition to the Azure admin portal and the developer portal, you can use the Azure Deployment Environments CLI extension to create resources. Azure Deployment Environments and Microsoft Dev Box use the same Azure CLI extension, which is called *devcenter*.
1818

1919
## Install the devcenter extension
2020

21-
To install the devcenter extension, you first need to install the Azure CLI. The following steps show you how to install the Azure CLI, then the devcenter extension.
21+
You first need to install the Azure CLI, and then install the devcenter extension.
2222

2323
1. Download and install the [Azure CLI](/cli/azure/install-azure-cli).
2424

25-
1. Install the devcenter extension
26-
``` azurecli
27-
az extension add --name devcenter
28-
```
29-
1. Check that the devcenter extension is installed
30-
``` azurecli
31-
az extension list
32-
```
25+
1. Install the devcenter extension by using the following command.
26+
``` azurecli
27+
az extension add --name devcenter
28+
```
29+
30+
1. Check that the devcenter extension has been installed.
31+
``` azurecli
32+
az extension list
33+
```
34+
3335
### Update the devcenter extension
34-
You can update the devcenter extension if you already have it installed.
3536
36-
To update a version of the extension that's installed
37+
If you already have the devcenter extension installed, you can update it.
3738
``` azurecli
3839
az extension update --name devcenter
3940
```
41+
4042
### Remove the devcenter extension
4143

42-
To remove the extension, use the following command
44+
To remove the extension, use the following command.
4345
```azurecli
4446
az extension remove --name devcenter
4547
```
4648

4749
## Get started with the devcenter extension
4850

49-
You might find the following commands useful as you work with the devcenter extension.
51+
You might find the following commands useful while you work with the devcenter extension.
5052

51-
1. Sign in to Azure CLI with your work account.
53+
1. Sign in to the Azure CLI with your account.
5254

5355
```azurecli
5456
az login
@@ -57,21 +59,21 @@ You might find the following commands useful as you work with the devcenter exte
5759
1. Set your default subscription to the subscription where you're creating your specific Deployment Environments resources.
5860
5961
```azurecli
60-
az account set --subscription {subscriptionId}
62+
az account set --subscription <subscriptionId>
6163
```
6264
63-
1. Set default resource group. Setting a default resource group means you don't need to specify the resource group for each command.
65+
1. Set a default resource group so that you don't need to specify the resource group for each command.
6466
6567
```azurecli
66-
az configure --defaults group={resourceGroupName}
68+
az configure --defaults group=<resourceGroupName>
6769
```
6870
69-
1. Get Help for a command
71+
1. Get help for a command.
7072
7173
```azurecli
7274
az devcenter admin --help
7375
```
7476
7577
## Next steps
7678
77-
For complete command listings, refer to the [Microsoft Deployment Environments and Azure Deployment Environments Azure CLI documentation](https://aka.ms/CLI-reference).
79+
For complete command listings, see the [Microsoft Dev Box and Azure Deployment Environments Azure CLI documentation](https://aka.ms/CLI-reference).

0 commit comments

Comments
 (0)