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/how-to-create-configure-projects.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,15 +85,15 @@ In this quickstart, you assign the Owner role to the system-assigned managed ide
85
85
1. Retrieve Subscription ID:
86
86
87
87
```azurecli
88
-
SUBID=$(az account show -n <name> --query id -o tsv)
88
+
SUBID=$(az account show -n <subscriptionId> --query id -o tsv)
89
89
echo $SUBID
90
90
```
91
91
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:
93
93
94
94
```azurecli
95
95
OID=$(az ad sp list --display-name <devcenterName> --query [].id -o tsv)
96
-
echo $SUBID
96
+
echo $OID
97
97
```
98
98
99
99
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
121
121
az configure --defaults group=<resourceGroupName>
122
122
```
123
123
124
-
1. Show allowed environment type for project:
124
+
1. Show allowed environment type for the project:
125
125
126
126
```azurecli
127
127
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
160
160
--scope "/subscriptions/$SUBID"
161
161
```
162
162
163
-
1. Optionally, you can assign Dev Environment User:
163
+
1. Optionally, you can assign the Dev Environment User role:
164
164
165
165
```azurecli
166
166
az role assignment create --assignee $MYOID \
@@ -173,7 +173,7 @@ In this quickstart, you give access to your own ID. Optionally, you can replace
173
173
174
174
## Next steps
175
175
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.
177
177
178
178
> [!div class="nextstepaction"]
179
179
> [Create and access an environment by using the Azure CLI](how-to-create-access-environments.md)
0 commit comments