Configure identity for the Event Grid module
This article gives shows how to configure identity for Grid on Edge. By default, the Event Grid module presents its identity certificate as configured by the IoT security daemon. Event Grid on Edge presents its identity certificate with its outgoing calls when it delivers events. A subscriber can then validate it's the Event Grid module that sent the event before accepting.
See Security and authentication guide for all the possible configurations.
Always present identity certificate
Here's an example configuration for always presenting an identity certificate on outgoing calls.
{
"Env": [
"outbound__clientAuth__clientCert__enabled=true",
"outbound__clientAuth__clientCert__source=IoTEdge"
]
}
Don't present identity certificate
Here's an example configuration for not presenting an identity certificate on outgoing calls.
{
"Env": [
"outbound__clientAuth__clientCert__enabled=false"
]
}