> For the complete documentation index, see [llms.txt](https://help.protecto.ai/getting-started/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.protecto.ai/getting-started/protecto-overview/introduction/add-new-data-source/azure-sql/connect-using-ad-application-credentials.md).

# Connect using AD Application credentials

**Step I:**

1. Login to Microsoft azure portal.
2. Search App registrations, and create New registration.
3. Give a name and leave default register.\
   ![](/files/k2d6Mf54cI4DsUjrX1H4)
4. Create secret. \
   ![](/files/bw20yCGFNRt7wBPb28Vb)
5. Give following API Permission with Grant admin consent. ![](/files/2SMkUZoAHaIkMwwK72Cz)
6. Create App roles with Task Read value.\
   ![](/files/H6hB0DzOdPwvR0HsIVQp)<br>

**Step II:**&#x20;

Create database user from external (AD Application) in master database.\
**Query**

CREATE USER \<AD Application name> FROM EXTERNAL PROVIDER;<br>

**Step III:**

Switch to the database and add user to database role (db\_datareader), grant view definition privilege.\
**Query**

ALTER ROLE db\_datareader ADD MEMBER \[\<AD Application name>];

GRANT VIEW DEFINITION TO \[\<AD Application name>];

**Required Parameters:**

* Server name (example : testdb.database.windows.net)
* Database name
* App client id
* App tenant id
* App client secret


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.protecto.ai/getting-started/protecto-overview/introduction/add-new-data-source/azure-sql/connect-using-ad-application-credentials.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
