Harry1234
Harry1234

Reputation: 21

Databricks - How can we use a single common PAT Token access for multiple databricks Workspaces which is under the same admin databricks account

I want to know how its possible to use single PAT token to access multiple datarbicks workspaces

I referred lot of api documentation, workspace, admin authorization documentation

Upvotes: 1

Views: 530

Answers (1)

Alex Ott
Alex Ott

Reputation: 87069

No, it's not possible - personal access token (PAT) is bound to a specific user/service principal in the specific workspace, it's unique.

But on Azure Databricks it's better to use Azure Active Directory (AAD) tokens instead of PATs - they are more secure, plus you can use the same AAD token for multiple workspaces to which you have access. You can read more about different ways of generating AAD tokens in the documentation.

Upvotes: 1

Related Questions