Skip to content

Commit fe0f628

Browse files
committed
update doc2
1 parent 0d03fa2 commit fe0f628

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

articles/synapse-analytics/spark/how-to-use-certsp-emit-log-to-eventhub.md

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,24 @@ ms.date: 03/24/2025
1010

1111
# How to use certificate and Service Principal emit log to eventhub
1212

13-
This document provides a step-by-step guide for setting up Azure services, particularly focusing on integrating Azure Synapse with Event Hubs and Key Vault.
13+
(Summry)
1414

1515
## Prerequisites
1616

1717
- An Azure subscription. If you don't have one, [create a free account](https://azure.microsoft.com/free/) before you begin.
1818
- [Synapse Analytics workspace](/azure/synapse-analytics/get-started-create-workspace)
1919
- If you are new to Azure Event Hubs, read through [Event Hubs overview](/azure/event-hubs/event-hubs-about) and [Event Hubs features](/azure/event-hubs/event-hubs-features).
2020
- [Azure Key Vault](/azure/key-vault/general/overview)
21-
- To complete this tutorial's steps, you need to have access to a resource group for which you're assigned the Owner role. Generate a certificate in the Key Vault in this resource group.
21+
- [App Registration](https://ms.portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade)
2222

23+
> [!Note]
24+
>
25+
> To complete this tutorial's steps, you need to have access to a resource group for which you're assigned the Owner role.
26+
>
2327
2428
## Step 1. Create an App Registration (Service Principal)
2529

26-
1. Sign in to the [Azure portal](https://portal.azure.com/) and go to [App registrations](https://ms.portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade).
30+
1. Sign in to the [Azure portal](https://portal.azure.com/) and go to [App registrations](/entra/identity-platform/quickstart-register-app#register-an-application).
2731
2. Create a new app registration (Service Principal) for your Synapse workspace.
2832

2933
:::image type="content" source="media\how-to-use-certsp-emit-log-to-eventhub\create-a-new-app-registration.png" alt-text="Screenshot showing create a new app registration.":::
@@ -41,16 +45,17 @@ This document provides a step-by-step guide for setting up Azure services, parti
4145
1. Go to the app created in Step 1 -> **Manage** -> **Manifest**.
4246
2. Append the certificate details to the manifest file to establish trust.
4347

44-
```
45-
"trustedCertificateSubjects": [
46-
{
47-
"authorityId": "00000000-0000-0000-0000-000000000001",
48-
"subjectName": "Your-Subject-of-Certificate",
49-
"revokedCertificateIdentifiers": []
50-
}
48+
```
49+
"trustedCertificateSubjects": [
50+
{
51+
"authorityId": "00000000-0000-0000-0000-000000000001",
52+
"subjectName": "Your-Subject-of-Certificate",
53+
"revokedCertificateIdentifiers": []
54+
}
5155
]
52-
```
53-
:::image type="content" source="\media\how-to-use-certsp-emit-log-to-eventhub\trust-the-certificate.png" alt-text="Screenshot showing trust the certificate in the application.":::
56+
```
57+
58+
:::image type="content" source="media\how-to-use-certsp-emit-log-to-eventhub\trust-the-certificate.png" alt-text="Screenshot showing trust the certificate in the application.":::
5459
5560
## Step 4. Assign Azure Event Hubs Data Sender Role
5661

0 commit comments

Comments
 (0)