Skip to content

Commit 99c0977

Browse files
committed
Made some style fixes.
1 parent ed388dc commit 99c0977

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed

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

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.author: douglasl
1616
---
1717
# 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 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 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.
2020

2121
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

@@ -32,7 +32,10 @@ You can use an existing Azure AD group, or create a new one using Azure AD Power
3232
2. Sign in using `Connect-AzureAD`, and run the following command to create the group, and save it in a variable:
3333

3434
```powershell
35-
$Group = New-AzureADGroup -DisplayName "SSISIrGroup" -MailEnabled $false -SecurityEnabled $true -MailNickName "NotSet"
35+
$Group = New-AzureADGroup -DisplayName "SSISIrGroup" `
36+
-MailEnabled $false `
37+
-SecurityEnabled $true `
38+
-MailNickName "NotSet"
3639
```
3740
3841
The output looks like the following example, which also examines the value of the variable:
@@ -59,7 +62,7 @@ You can use an existing Azure AD group, or create a new one using Azure AD Power
5962
6063
## Enable Azure AD on Azure SQL Database
6164
62-
Azure SQL Database supports creating a database with an Azure AD user. So, 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 in 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 SSIS catalog on the server.
6366
6467
### Enable Azure AD authentication for the Azure SQL Database
6568
@@ -68,15 +71,15 @@ using the following steps:
6871
6972
1. In the Azure portal, select **All services** -> **SQL servers** from the left-hand navigation.
7073
71-
2. Click the SQL server to be enabled for Azure AD authentication.
74+
2. Select the SQL Database to be enabled for Azure AD authentication.
7275
73-
3. In the **Settings** section of the blade, click **Active Directory admin**.
76+
3. In the **Settings** section of the blade, select **Active Directory admin**.
7477
75-
4. In the command bar, click **Set admin**.
78+
4. In the command bar, select **Set admin**.
7679
77-
5. Select an Azure AD user account to be made an administrator of the server, and click **Select.**
80+
5. Select an Azure AD user account to be made an administrator of the server, and then select **Select.**
7881
79-
6. In the command bar, click **Save.**
82+
6. In the command bar, select **Save.**
8083
8184
### Create a contained user in the database that represents the Azure AD group
8285
@@ -89,23 +92,23 @@ For this next step, you need [Microsoft SQL Server Management Studio](https://d
8992
9093
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).)
9194
92-
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].
95+
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].
9396
94-
5. Click **Connect**. Complete the sign-in process.
97+
5. select **Connect**. Complete the sign-in process.
9598
9699
6. In the **Object Explorer**, expand the **Databases** -> System Databases folder.
97100
98-
7. Right-click on **master** database and click **New query**.
101+
7. Right-Select on **master** database and select **New query**.
99102
100-
8. In the query window, enter the following line, and click **Execute** in the toolbar:
103+
8. In the query window, enter the following line, and select **Execute** in the toolbar:
101104
102105
```sql
103106
CREATE USER [SSISIrGroup] FROM EXTERNAL PROVIDER
104107
```
105108
106-
The command should complete successfully, creating the contained user for the group.
109+
The command should complete successfully, creating the contained user for the group.
107110
108-
9. Clear the query window, enter the following line, and click **Execute** in the toolbar:
111+
9. Clear the query window, enter the following line, and Select **Execute** in the toolbar:
109112
110113
```sql
111114
ALTER ROLE dbmanager ADD MEMBER [SSISIrGroup]
@@ -115,22 +118,21 @@ The command should complete successfully, creating the contained user for the gr
115118
116119
## Enable Azure AD on Azure SQL Database Managed Instance
117120
118-
Azure SQL Database Managed Instance doesn't support creating database with any AAD user other than AD admin. As a result, you have to set the Azure AD Group as
119-
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 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.
120122
121123
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:
122124
123125
7. In the Azure portal, select **All services** -> **SQL servers** from the left-hand navigation.
124126
125-
8. Click the SQL server to be enabled for Azure AD authentication.
127+
8. Select the SQL server to be enabled for Azure AD authentication.
126128
127-
9. In the **Settings** section of the blade, click **Active Directory admin**.
129+
9. In the **Settings** section of the blade, select **Active Directory admin**.
128130
129-
10. In the command bar, click **Set admin**.
131+
10. In the command bar, select **Set admin**.
130132
131-
11. Search and select the Azure AD Group (for example, SSISIrGroup), and click **Select.**
133+
11. Search and select the Azure AD Group (for example, SSISIrGroup), and select **Select.**
132134
133-
12. In the command bar, click **Save.**
135+
12. In the command bar, select **Save.**
134136
135137
## Provision the Azure-SSIS IR in the portal
136138

0 commit comments

Comments
 (0)