【问题标题】:How to add RBAC in Azure Databricks using ARM如何使用 ARM 在 Azure Databricks 中添加 RBAC
【发布时间】:2019-03-01 09:54:15
【问题描述】:

我正在尝试使用 ARM 在 Azure Databricks 中添加 RBAC。我已经设法使用以下代码在 App Insights 中使用 ARM 添加 RBAC

"resources": [
    {
      "type": "Microsoft.Insights/components/providers/roleAssignments",
      "apiVersion": "2017-05-01",
      "name": "[concat(parameters('AppInsightName'),'/Microsoft.Authorization/',guid('AppInsightName'))]",
      "properties": {
        "roleDefinitionId": "[variables(parameters('builtInRoleType'))]",
        "principalId": "[parameters('principalId')]"
      }
    }
  ]

寻找使用 ARM 在 Databricks 中创建 RBAC 的一些输入

【问题讨论】:

    标签: azure-resource-manager azure-databricks


    【解决方案1】:

    你会使用完全相同的方法:

    {
      "type": "Microsoft.Databricks/workspaces/providers/roleAssignments",
      "apiVersion": "2017-05-01",
      "name": "[concat(parameters('databricks_name'),'/Microsoft.Authorization/',guid('something'))]",
      "properties": {
        "roleDefinitionId": "[variables(parameters('builtInRoleType'))]",
        "principalId": "[parameters('principalId')]"
      }
    }
    

    【讨论】:

      猜你喜欢
      • 2020-02-29
      • 1970-01-01
      • 2020-10-09
      • 1970-01-01
      • 2020-06-02
      • 2019-06-03
      • 1970-01-01
      • 2022-08-11
      • 2019-12-10
      相关资源
      最近更新 更多