cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Creating a service principal with admin role on account level in Azure Databricks using Terraform

AW
New Contributor III

Dear Community,

In the GUI I can grant the admin role to a service principal with a simple switch.

switchHow can I achive the same in Terraform? Do you have some code examples?

1 ACCEPTED SOLUTION

Accepted Solutions

Pat
Honored Contributor III

Hi @Adrian Wyssโ€‹ ,

to create SP with `account admin` role, please use the following:

resource "databricks_service_principal" "this" {
  provider     = databricks.mws
  display_name = "some-name"
}
 
# assign account_admin role
resource "databricks_service_principal_role" "this" {
  provider             = databricks.mws
  service_principal_id = databricks_service_principal.this.id
  role                 = "account_admin"
}

thanks,

Pat.

View solution in original post

3 REPLIES 3

Pat
Honored Contributor III

Hi @Adrian Wyssโ€‹ ,

to create SP with `account admin` role, please use the following:

resource "databricks_service_principal" "this" {
  provider     = databricks.mws
  display_name = "some-name"
}
 
# assign account_admin role
resource "databricks_service_principal_role" "this" {
  provider             = databricks.mws
  service_principal_id = databricks_service_principal.this.id
  role                 = "account_admin"
}

thanks,

Pat.

Hey @Pat,

unfortunately I get following error

 

Error: cannot read service principal role: Service Principal has no role

 

from Terraform resource "databricks_service_principal_role" when using your approach from above.

Do you have any idea?

AW
New Contributor III

Dear @Pat Sienkiewiczโ€‹ , works perfectly! It would be so easy it the documentation would be better... Rg Adrian

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโ€™t want to miss the chance to attend and share knowledge.

If there isnโ€™t a group near you, start one and help create a community that brings people together.

Request a New Group