# 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: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
