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/container-apps/tutorial-event-driven-jobs.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ The job uses an Azure Storage queue to receive messages. In this section, you cr
92
92
93
93
## Create a user-assigned managed identity
94
94
95
-
You can pull images from private repositories in Microsoft Azure Container Registry using managed identities for authentication to avoid the use of administrative credentials. When possible, you should use a user-assigned managed identity to pull images.
95
+
To avoid using administrative credentials, pull images from private repositories in Microsoft Azure Container Registry using managed identities for authentication. When possible, use a user-assigned managed identity to pull images.
96
96
97
97
1. Create a user-assigned managed identity. Before you run the following commands, replace the `\<PLACEHOLDERS\>` with the name of your managed identity.
98
98
@@ -139,9 +139,9 @@ To deploy the job, you must first build a container image for the job and push i
139
139
--sku Basic
140
140
```
141
141
142
-
1. Your container registry must allow ARM audience tokens forauthenticationin order to use managed identity to pull images.
142
+
1. Your container registry must allow Azure Resource Manager (ARM) audience tokens forauthenticationin order to use managed identity to pull images.
143
143
144
-
Use the following command to check if ARM tokens are allowed to access your ACR:
144
+
Use the following command to check if ARM tokens are allowed to access your Azure Container Registry (ACR):
145
145
146
146
```azurecli
147
147
az acr config authentication-as-arm show --registry "$CONTAINER_REGISTRY_NAME"
@@ -205,7 +205,7 @@ To deploy the job, you must first build a container image for the job and push i
205
205
| `--secrets` | The secrets to use for the job. |
206
206
| `--registry-server` | The container registry server to use for the job. For an Azure Container Registry, the command automatically configures authentication. |
207
207
| `--mi-user-assigned` | The resource ID of the user-assigned managed identity to assign to the job. |
208
-
| `--registry-identity` | The resource ID of a managed identity to authenticate with the registry server instead of username/password. If possible, an 'acrpull' role assignemnt will be created for the identity automatically. |
208
+
| `--registry-identity` | The resource ID of a managed identity to authenticate with the registry server instead of using a username and password. If possible, an 'acrpull' role assignment is created for the identity automatically. |
209
209
| `--env-vars` | The environment variables to use for the job. |
210
210
211
211
The scale rule configuration defines the event source to monitor. It is evaluated on each polling interval and determines how many job executions to trigger. To learn more, see [Set scaling rules](scale-app.md).
0 commit comments