Skip to content

Commit a18623e

Browse files
committed
some minor edits
1 parent 63396c6 commit a18623e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/python/tutorial-deploy-python-web-app-azure-container-apps-03.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Azure CLI commands can be run in the [Azure Cloud Shell][4] or on a workstation
125125
az containerapp github-action add \
126126
--resource-group <resource-group-name> \
127127
--name python-container-app \
128-
--repo-url <https://github.com/userid/> \
128+
--repo-url <https://github.com/userid/repo> \
129129
--branch main \
130130
--registry-url <registry-name>.azurecr.io \
131131
--service-principal-client-id <client-id> \
@@ -136,10 +136,10 @@ Azure CLI commands can be run in the [Azure Cloud Shell][4] or on a workstation
136136
137137
Where:
138138
* *\<resource-group-name>* is the name of the resource group. If you are following this tutorial, it is "pythoncontainer-rg".
139-
* *\<https://github.com/repo>* is the URL of your GitHub repository. If you're following the steps in this tutorial, it will be either https://github.com/<User ID>/msdocs-python-django-azure-container-apps or https://github.com/<User ID>/msdocs-python-flask-azure-container-apps; where \<User ID> is your GitHub user ID.
139+
* *\<https://github.com/userid/repo>* is the URL of your GitHub repository. If you're following the steps in this tutorial, it will be either https://github.com/userid/msdocs-python-django-azure-container-apps or https://github.com/userid/msdocs-python-flask-azure-container-apps; where `userid` is your GitHub user ID.
140140
* *\<registry-name>* is the existing Container Registry you created for this tutorial, or one that you can use.
141141
* *\<client-id>* is the value of the `appId` property from the previous `az ad sp create-for-rbac` command. The ID is a GUID of the form 00000000-0000-0000-0000-00000000.
142-
* *\<tenant-id>* is the value of the `appId` property from the previous `az ad sp create-for-rbac` command. The ID is also a GUID similar to the client ID.
142+
* *\<tenant-id>* is the value of the `tenant` property from the previous `az ad sp create-for-rbac` command. The ID is also a GUID similar to the client ID.
143143
* *\<client-secret>* is the value of the `password` property from the previous `az ad sp create-for-rbac` command.
144144
145145
:::column-end:::

0 commit comments

Comments
 (0)