Průzkumník dat Azure je rychlá a vysoce škálovatelná služba pro zkoumání dat protokolů a telemetrie. V tomto článku se dozvíte, jak přidat objekty zabezpečení clusteru pro Azure Data Explorer pomocí C#, Pythonu nebo šablony Azure Resource Manager (ARM).
Požadavky se liší v závislosti na metodě použité k přidání objektu zabezpečení. Zvolte příslušnou kartu pro preferovanou metodu.
Spuštěním následujícího kódu přidejte objekt zabezpečení clusteru:
var tenantId = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx"; //Directory (tenant) ID
var clientId = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx"; //Application ID
var clientSecret = "PlaceholderClientSecret"; //Client Secret
var subscriptionId = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx";
var credentials = await ApplicationTokenProvider.LoginSilentAsync(tenantId, clientId, clientSecret);
var kustoManagementClient = new KustoManagementClient(credentials) { SubscriptionId = subscriptionId };
var resourceGroupName = "testrg";
//The cluster that is created as part of the Prerequisites
var clusterName = "mykustocluster";
var clusterPrincipalAssignmentName = "mykustoclusterprincipalassignment";
var principalId = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx"; //User email, application ID, or security group name
var role = "AllDatabasesAdmin"; //AllDatabasesAdmin or AllDatabasesViewer
var tenantIdForPrincipal = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx";
var principalType = "App"; //User, App, or Group
var clusterPrincipalAssignmentData = new ClusterPrincipalAssignment(
principalId: principalId, role: role, principalType: principalType, tenantId: tenantIdForPrincipal
);
await kustoManagementClient.ClusterPrincipalAssignments.CreateOrUpdateAsync(
resourceGroupName, clusterName, clusterPrincipalAssignmentName, clusterPrincipalAssignmentData
);
Nastavení |
Navrhovaná hodnota |
Popis pole |
ID tenanta |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID vašeho tenanta Označuje se také jako ID adresáře. |
subscriptionId |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID předplatného, které použijete k vytvoření prostředku. |
clientId |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID klienta aplikace, která má přístup k prostředkům ve vašem tenantovi. |
clientSecret |
PlaceholderClientSecret |
Tajný klíč klienta aplikace, která má přístup k prostředkům ve vašem tenantovi. |
resourceGroupName |
testrg |
Název skupiny prostředků obsahující váš cluster. |
clusterName |
mykustocluster |
Název vašeho clusteru. |
principalAssignmentName |
clusterPrincipalAssignment1 |
Název vašeho prostředku objektu zabezpečení clusteru. |
principalId |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID objektu zabezpečení, kterým může být e-mail uživatele, ID aplikace nebo název skupiny zabezpečení. |
role |
VšechnyDatabázeAdmin |
Role objektu zabezpečení clusteru, která může být AllDatabasesAdmin, AllDatabasesMonitor nebo AllDatabasesViewer. |
tenantIdForPrincipal |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID tenanta objektu zabezpečení. |
principalType |
Aplikace |
Typ objektu zabezpečení, který může být "Uživatel", "Aplikace" nebo "Skupina". |
Spuštěním následujícího kódu přidejte objekt zabezpečení clusteru:
from azure.mgmt.kusto import KustoManagementClient
from azure.mgmt.kusto.models import ClusterPrincipalAssignment
from azure.common.credentials import ServicePrincipalCredentials
#Directory (tenant) ID
tenant_id = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx"
#Application ID
client_id = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx"
#Client Secret
client_secret = "xxxxxxxxxxxxxx"
subscription_id = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx"
credentials = ServicePrincipalCredentials(
client_id=client_id,
secret=client_secret,
tenant=tenant_id
)
kusto_management_client = KustoManagementClient(credentials, subscription_id)
resource_group_name = "testrg"
#The cluster that is created as part of the Prerequisites
cluster_name = "mykustocluster"
principal_assignment_name = "clusterPrincipalAssignment1"
#User email, application ID, or security group name
principal_id = "xxxxxxxx"
#AllDatabasesAdmin, AllDatabasesMonitor or AllDatabasesViewer
role = "AllDatabasesAdmin"
tenant_id_for_principal = tenantId
#User, App, or Group
principal_type = "App"
#Returns an instance of LROPoller, check https://learn.microsoft.com/python/api/msrest/msrest.polling.lropoller?view=azure-python
poller = kusto_management_client.cluster_principal_assignments.create_or_update(resource_group_name=resource_group_name, cluster_name=cluster_name, principal_assignment_name= principal_assignment_name, parameters=ClusterPrincipalAssignment(principal_id=principal_id, role=role, tenant_id=tenant_id_for_principal, principal_type=principal_type))
Nastavení |
Navrhovaná hodnota |
Popis pole |
tenant_id |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID vašeho tenanta Označuje se také jako ID adresáře. |
subscription_id |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID předplatného, které použijete k vytvoření prostředku. |
client_id |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID klienta aplikace, která má přístup k prostředkům ve vašem tenantovi. |
client_secret |
xxxxxxxxxxxxxxxx |
Tajný klíč klienta aplikace, která má přístup k prostředkům ve vašem tenantovi. |
resource_group_name |
testrg |
Název skupiny prostředků obsahující váš cluster. |
cluster_name |
mykustocluster |
Název vašeho clusteru. |
principal_assignment_name |
clusterPrincipalAssignment1 |
Název vašeho hlavního prostředku clusteru. |
Principal_id |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
Hlavní ID, kterým může být e-mail uživatele, ID aplikace nebo název skupiny zabezpečení. |
role |
AllDatabasesAdmin |
Role objektu zabezpečení clusteru, která může být AllDatabasesAdmin, AllDatabasesMonitor nebo AllDatabasesViewer. |
tenant_id_for_principal |
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx |
ID tenanta objektu zabezpečení. |
principal_type |
Aplikace |
Typ objektu zabezpečení, kterým může být Uživatel, Aplikace nebo Skupina. |
Následující příklad ukazuje šablonu Azure Resource Manager pro přidání objektu zabezpečení clusteru. Šablonu můžete upravit a nasadit v Azure Portal pomocí formuláře.
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"clusterPrincipalAssignmentName": {
"type": "string",
"defaultValue": "principalAssignment1",
"metadata": {
"description": "Specifies the name of the principal assignment"
}
},
"clusterName": {
"type": "string",
"defaultValue": "mykustocluster",
"metadata": {
"description": "Specifies the name of the cluster"
}
},
"principalIdForCluster": {
"type": "string",
"metadata": {
"description": "Specifies the principal id. It can be user email, application (client) ID, security group name"
}
},
"roleForClusterPrincipal": {
"type": "string",
"defaultValue": "AllDatabasesViewer",
"metadata": {
"description": "Specifies the cluster principal role. It can be 'AllDatabasesAdmin', 'AllDatabasesMonitor' or 'AllDatabasesViewer'"
}
},
"tenantIdForClusterPrincipal": {
"type": "string",
"metadata": {
"description": "Specifies the tenantId of the principal"
}
},
"principalTypeForCluster": {
"type": "string",
"defaultValue": "User",
"metadata": {
"description": "Specifies the principal type. It can be 'User', 'App', 'Group'"
}
}
},
"variables": {
},
"resources": [{
"type": "Microsoft.Kusto/Clusters/principalAssignments",
"apiVersion": "2019-11-09",
"name": "[concat(parameters('clusterName'), '/', parameters('clusterPrincipalAssignmentName'))]",
"properties": {
"principalId": "[parameters('principalIdForCluster')]",
"role": "[parameters('roleForClusterPrincipal')]",
"tenantId": "[parameters('tenantIdForClusterPrincipal')]",
"principalType": "[parameters('principalTypeForCluster')]"
}
}
]
}