Skip to content

Commit 5fd7d35

Browse files
Merge pull request #259421 from FlorianBorn71/FixAARTypo2
Fix typos AAR -> ARR
2 parents f884daa + 88b48f1 commit 5fd7d35

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • articles/remote-rendering/tutorials/unity/security

articles/remote-rendering/tutorials/unity/security/security.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,13 +186,13 @@ The **RemoteRenderingCoordinator** script has a delegate named **ARRCredentialGe
186186

187187
1. After configuring your Remote Rendering account, check your configuration looks like the following image:
188188

189-
**AAR -> AccessControl (IAM)**
189+
**ARR -> AccessControl (IAM)**
190190
:::image type="content" source="./../../../how-tos/media/azure-remote-rendering-role-assignments.png" alt-text="ARR Role":::
191191

192192
>[!NOTE]
193193
> An *Owner* role is not sufficient to manage sessions via the client application. For every user you want to grant the ability to manage sessions you must provide the role **Remote Rendering Client**. For every user you want to manage sessions and convert models, you must provide the role **Remote Rendering Administrator**.
194194

195-
With the Azure side of things in place, we now need to modify how your code connects to the AAR service. We do that by implementing an instance of **BaseARRAuthentication**, which returns a new **SessionConfiguration** object. In this case, the account info is configured with the Azure Access Token.
195+
With the Azure side of things in place, we now need to modify how your code connects to the ARR service. We do that by implementing an instance of **BaseARRAuthentication**, which returns a new **SessionConfiguration** object. In this case, the account info is configured with the Azure Access Token.
196196

197197
1. Create a new script named **AADAuthentication** and replace its code with the following:
198198

@@ -260,11 +260,11 @@ With the Azure side of things in place, we now need to modify how your code conn
260260

261261
public void OnEnable()
262262
{
263-
RemoteRenderingCoordinator.ARRCredentialGetter = GetAARCredentials;
263+
RemoteRenderingCoordinator.ARRCredentialGetter = GetARRCredentials;
264264
this.gameObject.AddComponent<ExecuteOnUnityThread>();
265265
}
266266

267-
public async override Task<SessionConfiguration> GetAARCredentials()
267+
public async override Task<SessionConfiguration> GetARRCredentials()
268268
{
269269
var result = await TryLogin();
270270
if (result != null)

0 commit comments

Comments
 (0)