Skip to content

Commit 79aeb17

Browse files
Apply suggestions from code review
Co-authored-by: Craig Shoemaker <[email protected]>
1 parent 6278ce6 commit 79aeb17

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/tutorial-event-driven-jobs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The job uses an Azure Storage queue to receive messages. In this section, you cr
9292
9393
## Create a user-assigned managed identity
9494
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.
9696
9797
1. Create a user-assigned managed identity. Before you run the following commands, replace the `\<PLACEHOLDERS\>` with the name of your managed identity.
9898
@@ -139,9 +139,9 @@ To deploy the job, you must first build a container image for the job and push i
139139
--sku Basic
140140
```
141141

142-
1. Your container registry must allow ARM audience tokens for authentication in order to use managed identity to pull images.
142+
1. Your container registry must allow Azure Resource Manager (ARM) audience tokens for authentication in order to use managed identity to pull images.
143143

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):
145145

146146
```azurecli
147147
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
205205
| `--secrets` | The secrets to use for the job. |
206206
| `--registry-server` | The container registry server to use for the job. For an Azure Container Registry, the command automatically configures authentication. |
207207
| `--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. |
209209
| `--env-vars` | The environment variables to use for the job. |
210210
211211
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

Comments
 (0)