Skip to content

Commit d27d48f

Browse files
author
Pat Altimore
committed
Typos
1 parent 86f5636 commit d27d48f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

articles/iot-operations/connect-to-cloud/howto-configure-registry-endpoint.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A registry endpoint defines the connection details and authentication method for
3232

3333
Registry endpoints support authentication through:
3434
- System-assigned managed identity
35-
- User-assigned managed identity
35+
- User-assigned managed identity
3636
- Artifact pull secrets (username and password)
3737
- Anonymous access (for public registries)
3838

@@ -81,7 +81,7 @@ Create a Bicep `.bicep` file with the following content:
8181
param aioInstanceName string = '<AIO_INSTANCE_NAME>'
8282
param customLocationName string = '<CUSTOM_LOCATION_NAME>'
8383
param registryEndpointName string = '<REGISTRY_ENDPOINT_NAME>'
84-
param registryHost string = '<REGISTRY_HOST>'
84+
param registryHost string = '<REGISTRY_HOST>' // For example, myregistry.azurecr.io
8585
8686
resource aioInstance 'Microsoft.IoTOperations/instances@2024-11-01' existing = {
8787
name: aioInstanceName
@@ -91,7 +91,7 @@ resource customLocation 'Microsoft.ExtendedLocation/customLocations@2021-08-31-p
9191
name: customLocationName
9292
}
9393
94-
resource registryEndpoint 'Microsoft.IoTOperations/instances/registryEndpoints@2024-11-01' = {
94+
resource registryEndpoint 'Microsoft.IoTOperations/instances/registryEndpoints@2025-07-01-preview' = {
9595
parent: aioInstance
9696
name: registryEndpointName
9797
extendedLocation: {
@@ -170,7 +170,8 @@ Before configuring the registry endpoint, ensure the Azure IoT Operations system
170170
1. Copy the name of the extension listed after **Azure IoT Operations Arc extension**. For example, *azure-iot-operations-xxxx7*.
171171
1. Go to your container registry > **Access control (IAM)** > **Add role assignment**.
172172
1. On the **Role** tab, select `AcrPull` role.
173-
1. On the **Members** tab, for **Assign access to**, select **User, group, or service principal**, then select **+ Select members** and search for the Azure IoT Operations Arc extension name.
173+
1. On the **Members** tab, for **Assign access to**, select **User, group, or service principal**, then select **+ Select members** and search for the Azure IoT Operations Arc extension name. Choose the extension and select **Select**.
174+
1. Select **Review + assign** to complete the role assignment.
174175

175176
<!--
176177
# [Operations experience](#tab/portal)
@@ -279,7 +280,7 @@ The operator attempts to infer the scope from the endpoint if not provided.
279280

280281
#### Artifact pull secret
281282

282-
Artifact pull secrets allow you to use username and password authentication for registries that don't support managed identity authentication.
283+
Artifact pull secrets lets you use username and password authentication for registries that don't support managed identity authentication.
283284

284285
First, create a Kubernetes secret containing the registry credentials:
285286

@@ -394,7 +395,7 @@ resource customLocation 'Microsoft.ExtendedLocation/customLocations@2021-08-31-p
394395
name: customLocationName
395396
}
396397
397-
resource acrRegistryEndpoint 'Microsoft.IoTOperations/instances/registryEndpoints@2024-11-01' = {
398+
resource acrRegistryEndpoint 'Microsoft.IoTOperations/instances/registryEndpoints@2025-07-01-preview' = {
398399
parent: aioInstance
399400
name: 'acr-endpoint'
400401
extendedLocation: {

articles/iot-operations/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ items:
141141
- name: Disk-backed message buffer
142142
href: manage-mqtt-broker/howto-disk-backed-message-buffer.md
143143
displayName: MQTT, broker, persistence, storage
144-
- name: Broker persistence
144+
- name: Data persistence
145145
href: manage-mqtt-broker/howto-broker-persistence.md
146146
displayName: MQTT, broker, persistence, storage
147147
- name: Diagnostic settings

0 commit comments

Comments
 (0)