Configure an Azure Event Grid Reaction
The Azure Event Grid Reaction generates CloudEvents and publishes them to an Azure Event Grid Topic. The output format can either be the packed format of the raw query output or an unpacked format, where a single CloudEvent represents one change to the result set.
NOTE: The Azure Event Grid Reaction is only compatible with Event Grid Topics that use CloudEventSchemaV1_0
as the input schema.
Requirements
On the computer from where you will create the Reaction, you need the following software:
Creating the Reaction
To create a Reaction, execute the drasi apply
command as follows:
drasi apply -f my-reaction.yaml
The drasi apply
command is how you create all new Drasi resources (in this case a Reaction). The -f
flag specifies that the definition of the new Reaction is contained in the referenced YAML file my-reaction.yaml
.
Reaction Definitions
The YAML file passed to drasi apply
can contain one or more Reaction definitions. The Event Grid Reaction can use either Access Keys or Managed Identity for authentication. The examples below demonstrate both methods:
Authenticate using Access Keys
kind: Reaction
apiVersion: v1
name: my-reaction
spec:
kind: EventGrid
queries:
<query-id>:
properties:
eventGridUri: <event-grid-topic-endpoint>
eventGridKey: <topic-access-key>
In this definition:
- the apiVersion must be v1.
- the kind property tells Drasi to create a Reaction resource.
- the spec.kind property tells Drasi the kind of Reaction to create, in this case a EventGrid Reaction.
- the name property tells Drasi the identity of the Reaction and must be unique within the scope of Reactions within the target Drasi environment. In the above example, the name of the Reaction is my-reaction.
This table describes the other settings in the spec section of the Reaction definition:
Property | Description |
---|---|
queries | Specifies the set of names of the Continuous Queries the Reaction will subscribe to. |
properties.eventGridUri | The endpoint of your EventGrid Topic. This can be retrieve from the Azure portal |
properties.eventGridKey | The access key to your EventGrid Topic. This field is optional if identity field is set (see below) |
properties.format | The output format for the messages that are enqueued. The can either be packed for the raw query output or unpacked for a message per result set change. The default value is packed |
identity | The service identity provider used for authentication to the Azure Event Grid service, discussed below. |
Secret Configuration
It is best practice to store private credentials in a secret, which can be created using kubectl
. The example below creates a Secret with the name event-creds
, containing one key called accessKey
in the drasi-system
namespace. Secrets must be in the same Kubernetes namespace as your Drasi installation in order to be referenced.
kubectl create secret generic event-creds --from-literal="accessKey=xxxxxx" -n drasi-system
Example
kind: Reaction
apiVersion: v1
name: my-reaction
spec:
kind: EventGrid
queries:
<query-id>:
properties:
eventGridUri: <event-grid-topic-endpoint>
eventGridKey:
kind: Secret
name: event-creds
key: accessKey
Authenticate using Managed Identity
The reaction supports the following service identities:
Microsoft Entra Workload ID
Microsoft Entra Workload Identity enables your reaction to authenticate to Azure without the need to store sensitive credentials. It works by creating a federated identity between a managed identity and the service account the reaction is running against.
Property | Description |
---|---|
kind | MicrosoftEntraWorkloadID |
clientId | The Client ID of the user managed identity. |
Example
kind: Reaction
apiVersion: v1
name: my-reaction
spec:
kind: EventGrid
identity:
kind: MicrosoftEntraWorkloadID
clientId: <Client ID of Managed Identity>
queries:
<query-id>:
properties:
eventGridUri: <event-grid-topic-endpoint>
AKS Setup
- On the Azure portal, navigate to the
Security configuration
pane of your AKS cluster. - Ensure
Enable Workload Identity
is enabled. - Take note of the
Issuer URL
under OIDC. - Create or use an existing
User Assigned Managed Identity
. - Take note of the
Client ID
an theOverview
pane of the Managed Identity. - Grant the
EventGrid Data Contributor
role to the managed identity in theAccess Control (IAM)
pane of the Event Grid Topic. - Create a federated credential between the managed identity and the reaction.
az identity federated-credential create \ --name <Give the federated credential a unique name> \ --identity-name "<Name of the User Assigned Managed Identity>" \ --resource-group "<Your Resource Group>" \ --issuer "<The Issuer URL from your AKS cluster OIDC configuration>" \ --subject system:serviceaccount:"drasi-system":"reaction.<Name of your Reaction>" \ --audience api://AzureADTokenExchange
Related links
- What are managed identities for Azure resources
- What are workload identities
- Azure AD Workload Identity Docs
- Deploy and configure workload identity on an Azure Kubernetes Service (AKS) cluster
- Use Microsoft Entra Workload ID with Azure Kubernetes Service (AKS)
Output formats
Packed Format
The packed format produces one message per source change that includes all changes to the result set and looks as follows:
{
"kind":"change",
"queryId": "query1",
"sequence": 2,
"sourceTimeMs": 0,
"addedResults": [
{ "id": 10, "temperature": 22 }
],
"updatedResults":[{
"before": { "id": 11, "temperature": 25 },
"after": { "id": 11, "temperature": 27 }
}],
"deletedResults":[
{ "id": 12, "temperature": 30 }
]
}
Unpacked Format
The Unpacked format flattens all the changed result set items into one message per item and looks as follows:
{
"op": "i",
"ts_ms": 0,
"payload": {
"source": {
"queryId": "query1",
"ts_ms": 0
},
"after": {
"id": 10,
"temperature": 22
}
}
}
{
"op": "u",
"ts_ms": 0,
"payload": {
"source": {
"queryId": "query1",
"ts_ms": 0
},
"before": {
"id": 11,
"temperature": 25
},
"after": {
"id": 11,
"temperature": 27
}
}
}
{
"op": "d",
"ts_ms": 0,
"payload": {
"source": {
"queryId": "query1",
"ts_ms": 0
},
"before": {
"id": 12,
"temperature": 30
}
}
}
Inspecting the Reaction
As soon as the Reaction is created it will start running, subscribing to the specified list of Continuous Queries and processing changes to the Continuous Query results.
You can check the status of the Reaction using the drasi list
command:
drasi list reaction
This will return a simple list of all Reactions in the current namespace and their overall status. For example:
ID | AVAILABLE
--------------------+------------
my-reaction | true
If an error has occurred during the creation or operation of a Reaction, the AVAILABLE
column will contain the error text instead of true
or false
.
For more details about the Reaction you can use the drasi describe command:
drasi describe reaction my-reaction
This will return the full definition used to create the Reaction along with more detailed status information.
Modifying the Reaction
To modify the reaction, you can simply use the drasi apply
command again with the same reaction name that you used before.
Deleting the Reaction
To delete a Reaction you use the drasi delete
command. There are two ways to do this.
Firstly, you can specify the type of resource (Reaction) and its name, for example:
drasi delete reaction my-reaction
Secondly, you can refer to the YAML file(s) that contain the definitions used to create the Reaction(s):
drasi delete -f my-reaction.yaml <file2.yaml> <file3.yaml> <...>
This is a convenience, especially if a single YAML file contains multiple Reaction definitions.