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/quickstart-create-devcenter-and-project-arm.md
+37-5Lines changed: 37 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: quickstart-arm
9
9
ms.custom: subject-armqs
10
10
ms.date: 03/21/2024
11
11
12
-
# Customer intent: As an enterprise admin, I want a quick method to create and configure a Dev Center and Project resource to evaluate Deployment Environment.
12
+
# Customer intent: As an enterprise admin, I want a quick method to create and configure a Dev Center and Project resource to evaluate Deployment Environments.
13
13
---
14
14
15
15
# Quickstart: Create dev center and project for Azure Deployment Environments by using ARM template
@@ -21,7 +21,7 @@ This quickstart describes how to use an Azure Resource Manager template (ARM tem
21
21
If your environment meets the prerequisites and you're familiar with using ARM templates, select the
22
22
**Deploy to Azure** button. The template opens in the Azure portal.
23
23
24
-
:::image type="content" source="~/articles/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Button to deploy the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.devcenter%2Fenvironment-sandbox%2Fazuredeploy.json":::
24
+
:::image type="content" source="~/articles/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Button to deploy the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.devcenter%2Fdeployment-environments%2Fazuredeploy.json":::
25
25
26
26
## Prerequisites
27
27
@@ -32,11 +32,11 @@ If your environment meets the prerequisites and you're familiar with using ARM t
32
32
33
33
## Review the template
34
34
35
-
The template used in this quickStart is from [Azure Quickstart Templates](/samples/azure/azure-quickstart-templates/environment-sandbox/).
35
+
The template used in this quickStart is from [Azure Quickstart Templates](/samples/azure/azure-quickstart-templates/deployment-environments/).
36
36
37
-
To view the template, see [azuredeploy.json](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.devcenter/environment-sandbox/azuredeploy.json)
37
+
To view the template, see [azuredeploy.json](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.devcenter/deployment-environments/azuredeploy.json)
38
38
39
-
Azure resources defined in the template:
39
+
Azure resources defined in the template:
40
40
41
41
-[Microsoft.DevCenter/devcenters](/azure/templates/microsoft.devcenter/devcenters): create a dev center.
42
42
-[Microsoft.DevCenter/devcenters/catalogs](/azure/templates/microsoft.devcenter/devcenters/catalogs): create a catalog.
@@ -47,7 +47,39 @@ Azure resources defined in the template:
47
47
48
48
## Deploy the template
49
49
50
+
1. Select **Open Cloudshell** from the following code block to open Azure Cloud Shell, and then follow the instructions to sign in to Azure.
50
51
52
+
```azurepowershell-interactive
53
+
$resourceGroupName = Read-Host "Please enter resource group name e.g. test-ade-rg"
54
+
$userPrincipalId = Read-Host "Please enter user principal ID e.g. xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
55
+
$devcenterName = Read-Host "Please enter dev center name e.g. test-dev-center"
56
+
$projectName = Read-Host "Please enter project name e.g. test-project"
57
+
$environmentTypeName = Read-Host "Please enter environment type name or leave it empty to default to the name 'Sandbox'"
58
+
$location = Read-Host "Please enter region name e.g. eastus"
2. Ensure you're set to deploy to the subscription you want.
76
+
3. Select **Copy** from the previous code block to copy the PowerShell script.
77
+
4. Right-click the shell console pane and then select **Paste**.
78
+
5. Enter the values.
79
+
80
+
It takes about 30 minutes to deploy the template.
81
+
82
+
Azure PowerShell is used to deploy the template. You can also use the Azure portal and Azure CLI. To learn other deployment methods, see [Deploy templates](../azure-resource-manager/templates/deploy-portal.md).
0 commit comments