Skip to content

Commit b620f57

Browse files
committed
updates
1 parent 3978bce commit b620f57

File tree

1 file changed

+36
-34
lines changed

1 file changed

+36
-34
lines changed

articles/deployment-environments/quickstart-create-dev-center-project-azure-resource-manager.md

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 07/28/2025
1111
# Customer intent: As an enterprise admin, I want to use an ARM template to create and configure a dev center and project so that I can evaluate Deployment Environments.
1212
---
1313

14-
# Quickstart: Create dev center and project for Azure Deployment Environments by using an ARM template
14+
# Quickstart: Create a dev center and project for Azure Deployment Environments by using an ARM template
1515

1616
This quickstart describes how to use an Azure Resource Manager template (ARM template) to create and configure a dev center and project for creating an environment.
1717

@@ -24,36 +24,36 @@ If your environment meets the prerequisites and you're familiar with using ARM t
2424

2525
## Prerequisites
2626

27-
- If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
27+
- An Azure subscription. Create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) if you don't have one.
2828
- Owner or Contributor role on an Azure subscription or resource group.
29-
- Microsoft Entra AD. Your organization must use Microsoft Entra AD for identity and access management.
30-
- Microsoft Intune subscription. Your organization must use Microsoft Intune for device management.
29+
- Microsoft Entra ID. Your organization must use Microsoft Entra ID for identity and access management.
30+
- A Microsoft Intune subscription. Your organization must use Intune for device management.
3131

3232
## Review the template
3333

34-
The template used in this quickStart is from [Azure Quickstart Templates](/samples/azure/azure-quickstart-templates/deployment-environments/).
34+
The template used in this quickstart is from [Azure Quickstart Templates](/samples/azure/azure-quickstart-templates/deployment-environments/).
3535

3636
To view the template, see [azuredeploy.json](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.devcenter/deployment-environments/azuredeploy.json).
3737

3838
Azure resources defined in the template:
3939

40-
- [Microsoft.DevCenter/devcenters](/azure/templates/microsoft.devcenter/devcenters): create a dev center.
41-
- [Microsoft.DevCenter/devcenters/catalogs](/azure/templates/microsoft.devcenter/devcenters/catalogs): create a catalog.
42-
- [Microsoft.DevCenter/devcenters/environmentTypes](/azure/templates/microsoft.devcenter/devcenters/environmenttypes): create a dev center environment type.
43-
- [Microsoft.DevCenter/projects](/azure/templates/microsoft.devcenter/projects): create a project.
44-
- [Microsoft.Authorization/roleAssignments](/azure/templates/microsoft.authorization/roleassignments): create a role assignment.
45-
- [Microsoft.DevCenter/projects/environmentTypes](/azure/templates/microsoft.devcenter/projects/environmenttypes): create a project environment type.
40+
- [Microsoft.DevCenter/devcenters](/azure/templates/microsoft.devcenter/devcenters). Create a dev center.
41+
- [Microsoft.DevCenter/devcenters/catalogs](/azure/templates/microsoft.devcenter/devcenters/catalogs). Create a catalog.
42+
- [Microsoft.DevCenter/devcenters/environmentTypes](/azure/templates/microsoft.devcenter/devcenters/environmenttypes). Create a dev center environment type.
43+
- [Microsoft.DevCenter/projects](/azure/templates/microsoft.devcenter/projects). Create a project.
44+
- [Microsoft.Authorization/roleAssignments](/azure/templates/microsoft.authorization/roleassignments). Create a role assignment.
45+
- [Microsoft.DevCenter/projects/environmentTypes](/azure/templates/microsoft.devcenter/projects/environmenttypes). Create a project environment type.
4646

4747
## Deploy the template
4848

49-
1. Select **Open Cloud Shell** on either of the following code blocks and follow instructions to sign in to Azure.
50-
2. Wait until you see the prompt from the console, then ensure you're set to deploy to the subscription you want.
51-
3. If you want to continue deploying the template, select **Copy** on the code block, then right-click the shell console and select **Paste**.
49+
1. Select **Open Cloud Shell** above either of the following code blocks and follow the instructions to sign in to Azure.
50+
1. When you see the prompt from the console, ensure that you're ready to deploy to your chosen subscription.
51+
1. If you want to continue deploying the template, select **Copy** on the code block, and then right-click the shell console and select **Paste**.
5252

53-
1. If you want to use the default parameter values:
53+
- If you want to use the default parameter values, use this code:
5454

5555
```azurepowershell-interactive
56-
$location = Read-Host "Please enter region name e.g. eastus"
56+
$location = Read-Host "Please enter region name, for example, eastus"
5757
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.devcenter/deployment-environments/azuredeploy.json"
5858
5959
Write-Host "Start provisioning..."
@@ -64,16 +64,16 @@ Azure resources defined in the template:
6464
6565
```
6666
67-
2. If you want to input your own values:
67+
- If you want to input your own values, use this code:
6868
6969
```azurepowershell-interactive
7070
$resourceGroupName = Read-Host "Please enter resource group name: "
7171
$devCenterName = Read-Host "Please enter dev center name: "
7272
$projectName = Read-Host "Please enter project name: "
7373
$environmentTypeName = Read-Host "Please enter environment type name: "
74-
$userObjectId = Read-Host "Please enter your user object ID e.g. xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
74+
$userObjectId = Read-Host "Please enter your user object ID, for example, xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
7575
76-
$location = Read-Host "Please enter region name e.g. eastus"
76+
$location = Read-Host "Please enter region name, for example, eastus"
7777
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.devcenter/deployment-environments/azuredeploy.json"
7878
7979
Write-Host "Start provisioning..."
@@ -90,31 +90,33 @@ Azure PowerShell is used to deploy the template. You can also use the Azure port
9090
9191
### Required parameters
9292
93-
- *Resource Group Name*: The name of the resource group where the dev center and project are located.
94-
- *Dev Center Name*: The name of the dev center.
95-
- *Project Name*: The name of the project that is associated with the dev center.
96-
- *Environment Type Name*: The name of the environment type for both the dev center and project.
97-
- *User Object ID*: The object ID of the user that is granted the *Deployment Environments User* role.
93+
- *Resource group name*: The name of the resource group where the dev center and project will be located.
94+
- *Dev center name*: The name of the dev center.
95+
- *Project name*: The name of the project that's associated with the dev center.
96+
- *Environment type name*: The name of the environment type for both the dev center and the project.
97+
- *User object ID*: The object ID of a user that's granted the *Deployment Environments User* role.
9898
99-
Alternatively, you can provide access to deployment environments project in the Azure portal. See [Provide user access to Azure Deployment Environments projects](./how-to-configure-deployment-environments-user.md).
99+
Alternatively, you can provide access to the deployment environments project in the Azure portal. See [Provide user access to Azure Deployment Environments projects](./how-to-configure-deployment-environments-user.md).
100100
101101
## Review deployed resources
102102
103103
1. Sign in to the [Azure portal](https://portal.azure.com).
104-
2. Select **Resource groups** from the left pane.
105-
3. Select the resource group that you created in the previous section.
104+
1. Select **Resource groups** in the left pane.
105+
1. Select the resource group that you created in the previous section.
106106
107107
## Clean up resources
108108
109-
1. Delete any environments associated with the project either through the Azure portal or the developer portal.
110-
2. Delete the project resource.
111-
3. Delete the dev center resource.
112-
4. Delete the resource group.
113-
5. Remove the role assignments that you don't need anymore from the subscription.
109+
If you no longer need the resources you created, delete them by following these instructions:
114110
115-
## Next steps
111+
1. Delete any environments that are associated with the project by using the Azure portal or the developer portal.
112+
1. Delete the project resource.
113+
1. Delete the dev center resource.
114+
1. Delete the resource group.
115+
1. Remove role assignments that you don't need anymore from the subscription.
116116
117-
In this quickstart, you created and configured a dev center and project. Advance to the next quickstart to learn how to create an environment.
117+
## Next step
118+
119+
In this quickstart, you created and configured a dev center and project. Go to the next quickstart to learn how to create an environment.
118120
119121
> [!div class="nextstepaction"]
120122
> [Quickstart: Create and access an environment](./quickstart-create-access-environments.md)

0 commit comments

Comments
 (0)