Skip to content

Commit de9a79b

Browse files
committed
Made fixes requested by reviewer.
1 parent 99c0977 commit de9a79b

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

articles/data-factory/TOC.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,8 @@
376376
items:
377377
- name: Join Azure-SSIS integration runtime to a VNET
378378
href: join-azure-ssis-integration-runtime-virtual-network.md
379+
- name: Enable Azure AD authentication for Azure-SSIS integration runtime
380+
href: enable-aad-authentication-azure-ssis-ir.md
379381
- name: Configure high performance for Azure-SSIS integration runtime
380382
href: configure-azure-ssis-integration-runtime-performance.md
381383
- name: Provision Enterprise Edition for Azure-SSIS integration runtime
@@ -384,9 +386,9 @@
384386
href: how-to-configure-azure-ssis-ir-custom-setup.md
385387
- name: Deploy licensed components for Azure-SSIS integration runtime
386388
href: how-to-develop-azure-ssis-ir-licensed-components.md
387-
- name: Run SSIS packages with SSIS activity
389+
- name: Run SSIS packages with Execute SSIS Package activity
388390
href: how-to-invoke-ssis-package-ssis-activity.md
389-
- name: Run SSIS packages with stored procedure activity
391+
- name: Run SSIS packages with Stored Procedure activity
390392
href: how-to-invoke-ssis-package-stored-procedure-activity.md
391393
- name: Schedule Azure-SSIS integration runtime
392394
href: how-to-schedule-azure-ssis-integration-runtime.md

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Enable Azure Active Directory Authentication for the Azure-SSIS Integration Runtime | Microsoft Docs
3-
description: This article describes how to configure the Azure-SSIS Integration Runtime to enable connections that use Azure Active Directory Authentication.
2+
title: Enable Azure Active Directory Authentication for the Azure-SSIS integration runtime | Microsoft Docs
3+
description: This article describes how to configure the Azure-SSIS integration runtime to enable connections that use Azure Active Directory authentication.
44
services: data-factory
55
documentationcenter: ''
66
author: douglaslMS
@@ -14,16 +14,16 @@ ms.topic: conceptual
1414
ms.date: 05/31/2018
1515
ms.author: douglasl
1616
---
17-
# Enable Azure Active Directory Authentication for the Azure-SSIS Integration Runtime
17+
# Enable Azure Active Directory authentication for the Azure-SSIS integration runtime
1818

19-
This article shows you how to create an Azure-SSIS IR with Azure data factory service identity. Azure Active Directory Authentication with the Managed Service Identity (MSI) for the Azure-SSIS integration runtime lets you use the 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 (Azure AD) authentication with the Managed Service Identity (MSI) for the Azure-SSIS integration runtime lets you use the Data Factory MSI instead of SQL authentication to create an Azure-SSIS integration runtime.
2020

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).
21+
For more info about the Data Factory MSI, see [Azure Data Factory service identity](https://docs.microsoft.com/en-us/azure/data-factory/data-factory-service-identity).
2222

2323
> [!NOTE]
24-
> 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.
24+
> If you have already created an Azure-SSIS integration runtime with SQL authentication, you can't reconfigure the IR to use Azure AD authentication with PowerShell at this time.
2525
26-
## Create a group in Azure AD and make the ADF MSI a member of the group
26+
## Create a group in Azure AD and make the Data Factory MSI a member of the group
2727

2828
You can use an existing Azure AD group, or create a new one using Azure AD PowerShell.
2929

@@ -48,7 +48,7 @@ You can use an existing Azure AD group, or create a new one using Azure AD Power
4848
6de75f3c-8b2f-4bf4-b9f8-78cc60a18050 SSISIr Group
4949
```
5050
51-
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).
51+
3. Add the Data Factory 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).
5252
5353
```powershell
5454
Add-AzureAdGroupMember -ObjectId $Group.ObjectId -RefObjectId 765ad4ab-XXXX-XXXX-XXXX-51ed985819dc
@@ -62,7 +62,7 @@ You can use an existing Azure AD group, or create a new one using Azure AD Power
6262
6363
## Enable Azure AD on Azure SQL Database
6464
65-
Azure SQL Database supports creating a database with an Azure AD user. As a result, you can set an Azure AD user as the Active Directory admin, and then log in to SSMS using the Azure AD user. Then you can create a contained user for the Azure AD group to enable the IR to create the SSIS catalog on the server.
65+
Azure SQL Database supports creating a database with an Azure AD user. As a result, you can set an Azure AD user as the Active Directory admin, and then log in to SSMS using the Azure AD user. Then you can create a contained user for the Azure AD group to enable the IR to create the SQL Server Integration Services (SSIS) catalog on the server.
6666
6767
### Enable Azure AD authentication for the Azure SQL Database
6868
@@ -90,7 +90,7 @@ For this next step, you need [Microsoft SQL Server Management Studio](https://d
9090
2. In the **Connect to Server** dialog, enter your SQL server name in
9191
the **Server name** field.
9292
93-
3. In the **Authentication** field, select **Active Directory - Universal with MFA support**. (You can also use other two Active Directory authentications. See [Configure and manage Azure Active Directory authentication with SQL Database, Managed Instance](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-aad-authentication-configure).)
93+
3. In the **Authentication** field, select **Active Directory - Universal with MFA support**. (You can also use other two Active Directory authentication types. See [Configure and manage Azure Active Directory authentication with SQL Database, Managed Instance](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-aad-authentication-configure).)
9494
9595
4. In the **User name** field, enter the name of the Azure AD account that you set as the server administrator - for example, [email protected].
9696
@@ -118,7 +118,7 @@ For this next step, you need [Microsoft SQL Server Management Studio](https://d
118118
119119
## Enable Azure AD on Azure SQL Database Managed Instance
120120
121-
Azure SQL Database Managed Instance doesn't support creating a database with any AAD user other than AD admin. As a result, you have to set the Azure AD Group as the Active Directory admin. You don't need to create the contained user.
121+
Azure SQL Database Managed Instance doesn't support creating a database with any Azure AD user other than AD admin. As a result, you have to set the Azure AD Group as the Active Directory admin. You don't need to create the contained user.
122122
123123
You can [configure Azure AD authentication for the SQL Database Managed Instance server](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-aad-authentication-configure) using the following steps:
124124

0 commit comments

Comments
 (0)