Skip to content

Commit ed388dc

Browse files
committed
Made some Acrolinx fixes.
1 parent 847076a commit ed388dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/data-factory/enable-aad-authentication-azure-ssis-ir.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ ms.author: douglasl
1616
---
1717
# Enable Azure Active Directory Authentication for the Azure-SSIS Integration Runtime
1818

19-
Azure Active Directory Authentication with the MSI for the Azure-SSIS integration runtime lets you use ADF MSI instead of SQL authentication to create an Azure-SSIS integration runtime.
19+
This article shows you how to create an Azure-SSIS IR with Azure data factory service identity. Azure Active Directory Authentication with the MSI for the Azure-SSIS integration runtime lets you use ADF MSI instead of SQL authentication to create an Azure-SSIS integration runtime.
2020

21-
In this article, we show you how to create an Azure-SSIS IR with Azure data factory service identity. For more info about the ADF MSI, see [Azure Data Factory service identity](https://docs.microsoft.com/en-us/azure/data-factory/data-factory-service-identity).
21+
For more info about the ADF MSI, see [Azure Data Factory service identity](https://docs.microsoft.com/en-us/azure/data-factory/data-factory-service-identity).
2222

2323
> [!NOTE]
2424
> If you have already created an Azure-SSIS integration runtime with SQL authentication, you can't reconfigure the IR to use AAD authentication with PowerShell at this time.
@@ -35,7 +35,7 @@ You can use an existing Azure AD group, or create a new one using Azure AD Power
3535
$Group = New-AzureADGroup -DisplayName "SSISIrGroup" -MailEnabled $false -SecurityEnabled $true -MailNickName "NotSet"
3636
```
3737
38-
The output looks like the following, which also examines the value of the variable:
38+
The output looks like the following example, which also examines the value of the variable:
3939
4040
```powershell
4141
$Group
@@ -45,7 +45,7 @@ You can use an existing Azure AD group, or create a new one using Azure AD Power
4545
6de75f3c-8b2f-4bf4-b9f8-78cc60a18050 SSISIr Group
4646
```
4747
48-
3. Add the ADF MSI to the group. You can follow [Azure Data Factory service identity](https://docs.microsoft.com/en-us/azure/data-factory/data-factory-service-identity) to get the service identity id (for example, 765ad4ab-XXXX-XXXX-XXXX-51ed985819dc).
48+
3. Add the ADF MSI to the group. You can follow [Azure Data Factory service identity](https://docs.microsoft.com/en-us/azure/data-factory/data-factory-service-identity) to get the service identity ID (for example, 765ad4ab-XXXX-XXXX-XXXX-51ed985819dc).
4949
5050
```powershell
5151
Add-AzureAdGroupMember -ObjectId $Group.ObjectId -RefObjectId 765ad4ab-XXXX-XXXX-XXXX-51ed985819dc

0 commit comments

Comments
 (0)