This is the multi-page printable view of this section. Click here to print.

Return to the regular view of this page.

Managed identity

1 - Kusto ManagedIdentity policy

Learn about the ManagedIdentity policy to control managed identities.

ManagedIdentity is a policy that controls which managed identities can be used for what purposes. For example, you can configure a policy that allows a specific managed identity to be used for accessing a storage account for ingestion purposes.

This policy can be enabled at the cluster and database levels. The policy is additive, meaning that for every operation that involves a managed identity, the operation will be permitted if the usage is allowed at either the cluster or database level.

Permissions

Creating or altering a managed identity policy requires AllDatabasesAdmin permissions.

The ManagedIdentity policy object

A cluster or database may have zero or more ManagedIdentity policy objects associated with it. Each ManagedIdentity policy object has the following user-definable properties: DisplayName and AllowedUsages. Other properties are automatically populated from the managed identity associated with the specified ObjectId and displayed for convenience.

The following table describes the properties of the ManagedIdentity policy object:

PropertyTypeRequiredDescription
ObjectIdstring✔️Either the actual object ID of the managed identity or the reserved keyword system to reference the System Managed Identity of the cluster on which the command is run.
ClientIdstringNot applicableThe client ID of the managed identity.
TenantIdstringNot applicableThe tenant ID of the managed identity.
DisplayNamestringNot applicableThe display name of the managed identity.
IsSystemboolNot applicableA Boolean value indicating true if the identity is a System Managed Identity; false if otherwise.
AllowedUsagesstring✔️A list of comma-separated allowed usage values for the managed identity. See managed identity usages.

The following is an example of a ManagedIdentity policy object:

{
  "ObjectId": "<objectID>",
  "ClientId": "<clientID>",
  "TenantId": "<tenantID",
  "DisplayName": "myManagedIdentity",
  "IsSystem": false,
  "AllowedUsages": "NativeIngestion, ExternalTable"
}

Managed identity usages

The following values specify authentication to a usage using the configured managed identity:

ValueDescription
AllAll current and future usages are allowed.
AutomatedFlowsRun a Continuous Export or Update Policy automated flow on behalf of a managed identity.
AzureAIAuthenticate to an Azure OpenAI service using the ai_embed_text plugin with a managed identity.
DataConnectionAuthenticate to data connections to an Event Hub or an Event Grid.
ExternalTableAuthenticate to external tables using connection strings configured with a managed identity.
NativeIngestionAuthenticate to an SDK for native ingestion from an external source.
SandboxArtifactsAuthenticate to external artifacts referenced in sandboxed plugins (e.g., Python) with a managed identity. This usage needs to be defined on the cluster level managed identity policy.
SqlRequestAuthenticate to an external database using the sql_request or cosmosdb_request plugin with a managed identity.