Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update entra-id-tutorial.md #10055

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/includes/entra-id-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,18 @@ In this tutorial, you learn how to:

> [!WARNING]
> Connections authenticated by Microsoft Entra ID are always encrypted. If SQL Server is using a self-signed certificate, you must add `trust server cert = true` in the connection string. SQL Server and Windows authenticated connections don't require encryption, but it is strongly recommended.

>
> SQL Server will connect directly to Entra ID for authentication. Either [explicit firewall urls](https://learn.microsoft.com/en-us/sql/sql-server/azure-arc/prerequisites?view=sql-server-ver16&tabs=azure#network-requirements-for-enabling-entra-id-authentication) need to be opened for direct access, or utilize a proxy server. Entra ID does not use the Arc Connected Machine Agent proxy for authentication. If the machine requires using a proxy server, Entra ID requires that the machine-level WinHTTP proxy be set using the commands:
> ```cmd
> netsh winhttp set proxy proxy-server="http://proxyserver:port"
> ```
> Entra ID authentication does not utililze the Arc agent proxy setting.
> The Arc Agent proxy may be set using the commands:
>
> ```cmd
> azcmagent config set proxy.url "http://proxyserver:port"
> ```
>
<a name='create-and-register-an-azure-ad-application'></a>

## Create and register a Microsoft Entra application
Expand Down