Skip to content

Commit ee1e6be

Browse files
authored
Update azurefunctions.md
Changed issue with numbered steps
1 parent e2c381d commit ee1e6be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pages/articles/azurefunctions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,13 @@ Next step is to assign permissions to this managed identity so it is authorized
177177
Install-Module AzureAD
178178
```
179179

180-
1. Connect to the Azure instance where your Azure Function runs and of which you want to use the Microsoft Graph through PnP PowerShell
180+
1. Connect to the Azure instance where your Azure Function runs and of which you want to use the Microsoft Graph through PnP PowerShell
181181

182182
```powershell
183183
Connect-AzureAD -TenandId <contoso>.onmicrosoft.com
184184
```
185185
186-
1. Retrieve the Azure AD Service Principal instance for the Microsoft Graph. It should always be AppId 00000003-0000-0000-c000-000000000000.
186+
1. Retrieve the Azure AD Service Principal instance for the Microsoft Graph. It should always be AppId 00000003-0000-0000-c000-000000000000.
187187
188188
```powershell
189189
$graphServicePrincipal = Get-AzureADServicePrincipal -SearchString "Microsoft Graph" | Select-Object -First 1
@@ -227,4 +227,4 @@ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
227227
228228
```
229229

230-
Notice the super clean and simple `Connect-PnPOnline`. No identifiers whatsoever need to be provided. Based on the permissions assigned to the managed identity, it will be able to authenticate and authorize access to the Microsoft Graph APIs used behind the cmdlet to fetch the data.
230+
Notice the super clean and simple `Connect-PnPOnline`. No identifiers whatsoever need to be provided. Nothing that could fall into wrong hands, no client secret or certificate that could expire. Based on the permissions assigned to the managed identity, it will be able to authenticate and authorize access to the Microsoft Graph APIs used behind the cmdlet to fetch the data.

0 commit comments

Comments
 (0)