Code Monkey home page Code Monkey logo

perfectthymetech / terraform-azurerm-data-management-zone Goto Github PK

View Code? Open in Web Editor NEW
3.0 0.0 1.0 6.67 MB

Cloud Scale Analytics - Data Management Zone Terraform Module

Home Page: https://registry.terraform.io/modules/PerfectThymeTech/data-management-zone/azurerm/latest

License: MIT License

HCL 97.25% PowerShell 2.75%
architecture azure cloud-scale-analytics data-management data-platform datamesh enterprise-scale enterprise-scale-analytics cloudscaleanalytics terraform

terraform-azurerm-data-management-zone's People

Contributors

dependabot[bot] avatar marvinbuss avatar

Stargazers

 avatar  avatar  avatar

Forkers

opme

terraform-azurerm-data-management-zone's Issues

Feature: Add SCIM Sync AAD config

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.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.