From 3b034c9cdfd01cf017e81ccb330673dd184a46c3 Mon Sep 17 00:00:00 2001 From: Jeremy Yeo Date: Mon, 11 Dec 2023 10:55:47 +1300 Subject: [PATCH] Update audit-log.md --- website/docs/docs/cloud/manage-access/audit-log.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/docs/docs/cloud/manage-access/audit-log.md b/website/docs/docs/cloud/manage-access/audit-log.md index b90bceef570..85eb06b4713 100644 --- a/website/docs/docs/cloud/manage-access/audit-log.md +++ b/website/docs/docs/cloud/manage-access/audit-log.md @@ -172,4 +172,12 @@ You can use the audit log to export all historical audit results for security, c +:::info Azure single tenant +For customers deployed in [Azure single tenant](https://docs.getdbt.com/docs/cloud/about-cloud/tenancy), the **Export All** button will not be available. Use one of the following APIs to retrieve alll events instead: +* [Get Recent Audit Log Events CSV](https://docs.getdbt.com/dbt-cloud/api-v3#/operations/Get%20Recent%20Audit%20Log%20Events%20CSV). + * This API will return all events in a single CSV without pagination. +* [List Recent Audit Log Events](https://docs.getdbt.com/dbt-cloud/api-v3#/operations/List%20Recent%20Audit%20Log%20Events). + * You will need to paginate the results as this API returns a limited number of events at a time. + +:::