Callout policy

Learn how to update a cluster’s callout policy to manage authorized domains for external calls.

Your cluster can communicate with external services in many different scenarios. Cluster administrators can manage the authorized domains for external calls by updating the cluster’s callout policy.

Supported properties of a callout

A callout policy is composed of the following properties:

NameTypeDescription
CalloutTypestringDefines the type of callout, and can be one of types listed in callout types.
CalloutUriRegexstringSpecifies the regular expression whose matches represent the domain of resources of the callout domain.
CanCallboolWhether the callout is permitted or denied external calls.

Types of callout

Callout policies are managed at cluster-level and are classified into the following types:

Callout policy typeDescription
kustoControls cross-cluster queries.
sqlControls the SQL plugin.
mysqlControls the MySQL plugin.
postgresqlControls the PostgreSql plugin.
azure_digital_twinsControls the Azure Digital Twins plugin.
cosmosdbControls the Cosmos DB plugin.
sandbox_artifactsControls sandboxed plugins (python and R).
external_dataControls access to external data through external tables or externaldata operator.
webapiControls access to http endpoints.
azure_openaiControls calls to Azure OpenAI plugins such as the embedding plugin ai_embed_text plugin.

Predefined callout policies

The following table shows a set of predefined callout policies that are preconfigured on your cluster to enable callouts to selected services:

ServiceDesignationPermitted domains
KustoCross cluster queries[a-z0-9]{3,22}\\.(\\w+\\.)?kusto(mfa)?\\.windows\\.net/?$
KustoCross cluster queries`^https://[a-z0-9]{3,22}\.[a-z0-9-]{1,50}\.(kusto\.azuresynapse
KustoCross cluster queries`^https://([A-Za-z0-9]+\.)?(ade
Azure DBSQL requests[a-z0-9][a-z0-9\\-]{0,61}[a-z0-9]?\\.database\\.windows\\.net/?$
Synapse AnalyticsSQL requests[a-z0-9-]{0,61}?(-ondemand)?\\.sql\\.azuresynapse(-dogfood)?\\.net/?$
External DataExternal data.*
Azure Digital TwinsAzure Digital Twins[A-Za-z0-9\\-]{3,63}\\.api\\.[A-Za-z0-9]+\\.digitaltwins\\.azure\\.net/?$

More predefined policies on your cluster may be observed with next query:

.show cluster policy callout 
| where EntityType == 'Cluster immutable policy'
| project Policy

Remarks

If an external resource of a given type matches more than one policy defined for such type, and at least one of the matched policies has their CanCall property set to false, access to the resource is denied.