We are trying to use event grid namespace’s MQTT broker feature to connect our iot devices running on .NET stack. From the documentation there are two ways to authenticate:
- Certificate match
- JWT based RBAC
We are trying to implement the first method. While adding clients it requires us to set an Authentication Name
and certificate field to match. But that means we would need to add each device we sell into the broker. Also we looked into using the same certificate for multiple clients but the limit is only 100. Which doesn’t seem practical at all. How should we go about this?