Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Add SCIM Sync AAD config #19

Open
marvinbuss opened this issue Mar 29, 2023 · 0 comments
Open

Feature: Add SCIM Sync AAD config #19

marvinbuss opened this issue Mar 29, 2023 · 0 comments
Assignees

Comments

@marvinbuss
Copy link
Contributor

Feature or Idea - What?

Add the AAD SCIM sync setup for Azure Databricks to the configuration: https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/resources/synchronization_job

data "azuread_application_template" "example" {
  display_name = "Azure Databricks SCIM Provisioning Connector"
}

resource "azuread_application" "example" {
  display_name = "example"
  template_id  = data.azuread_application_template.example.template_id
  feature_tags {
    enterprise = true
    gallery    = true
  }
}

resource "azuread_service_principal" "example" {
  application_id = azuread_application.example.application_id
  use_existing   = true
}

resource "azuread_synchronization_secret" "example" {
  service_principal_id = azuread_service_principal.example.id

  credential {
    key   = "BaseAddress"
    value = "https://adb-example.azuredatabricks.net/api/2.0/preview/scim"
  }
  credential {
    key   = "SecretToken"
    value = "some-token"
  }
}

resource "azuread_synchronization_job" "example" {
  service_principal_id = azuread_service_principal.example.id
  template_id          = "dataBricks"
  enabled              = true
}

Feature or Idea - Why?

This is required by enterprise customers to rely on a single identity across all services.

@marvinbuss marvinbuss self-assigned this Mar 29, 2023
@marvinbuss marvinbuss transferred this issue from PerfectThymeTech/CloudScaleAnalytics-v2-Terraform Jun 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: 📋 Backlog
Development

No branches or pull requests

1 participant