Building robust applications with Azure Event Hubs
Building robust applications requires a deep understanding of the platform and tools at our disposal. Azure Event Hubs, combined with other Azure services, provides a powerful platform to build resilient, scalable, and reliable applications. It’s now up to us as developers to leverage these tools effectively and create applications that can gracefully handle failures and continue to function reliably.
Configuring access control and permissions for Event Hubs
Securing your Azure Event Hubs involves not only securing the connections but also setting appropriate permissions and access controls. Azure uses Shared Access Signatures (SASs) for this purpose as well.
Understanding SAS permissions
When defining a shared access policy for your Event Hubs namespace or a specific Event Hub, you can specify one or more of the following permissions:
- Send: Allows the policyholder to send events to the Event Hub
- Listen...