Skip to content

Commit 798d154

Browse files
committed
Edit project article
1 parent bb28647 commit 798d154

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/deployment-environments/how-to-create-configure-dev-center.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ You can use this [sample catalog](https://github.com/Azure/deployment-environmen
176176
echo $SECRETID
177177
```
178178

179-
1. Add the catalog. Replace `$REPO_URL` with the URL that you copied from your GiHub fork:
179+
1. Add the catalog.
180180

181181
```azurecli
182182
# Sample catalog example

articles/deployment-environments/how-to-create-configure-projects.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ In this quickstart, you assign the Owner role to the system-assigned managed ide
8585
1. Retrieve Subscription ID:
8686
8787
```azurecli
88-
SUBID=$(az account show -n <name> --query id -o tsv)
88+
SUBID=$(az account show -n <subscriptionId> --query id -o tsv)
8989
echo $SUBID
9090
```
9191
92-
1. Retrieve Object ID of Dev Center's Identity using name of dev center resource:
92+
1. Retrieve the Object ID of the dev center's identity using the name of the dev center resource:
9393
9494
```azurecli
9595
OID=$(az ad sp list --display-name <devcenterName> --query [].id -o tsv)
96-
echo $SUBID
96+
echo $OID
9797
```
9898
9999
1. Assign the role of Owner to the dev center on the subscription:
@@ -121,7 +121,7 @@ To configure a project, add a [project environment type](how-to-configure-projec
121121
az configure --defaults group=<resourceGroupName>
122122
```
123123
124-
1. Show allowed environment type for project:
124+
1. Show allowed environment type for the project:
125125
126126
```azurecli
127127
az devcenter admin project-allowed-environment-type list --project <projectName> --query [].name
@@ -160,7 +160,7 @@ In this quickstart, you give access to your own ID. Optionally, you can replace
160160
--scope "/subscriptions/$SUBID"
161161
```
162162
163-
1. Optionally, you can assign Dev Environment User:
163+
1. Optionally, you can assign the Dev Environment User role:
164164
165165
```azurecli
166166
az role assignment create --assignee $MYOID \
@@ -173,7 +173,7 @@ In this quickstart, you give access to your own ID. Optionally, you can replace
173173
174174
## Next steps
175175
176-
In this quickstart, you created a project and granted project access to your development team. To learn about how your development team members can create environments, advance to the next quickstart.
176+
In this quickstart, you created a project and granted project access to your development team. To learn how your development team members can create environments, advance to the next quickstart.
177177
178178
> [!div class="nextstepaction"]
179179
> [Create and access an environment by using the Azure CLI](how-to-create-access-environments.md)

0 commit comments

Comments
 (0)