-
Notifications
You must be signed in to change notification settings - Fork 281
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Right now, we don't authentication the between Dapr sidecar and the application itself
Look at it:
// Dapr pubsub
app.MapPost("/CustomerCreated", (CustomerCreatedIntegrationEvent @event) =>
{
Console.WriteLine($"I received the message with name={@event.GetType().FullName}");
return Ok("Subscribed");
}).WithTopic("pubsub", "CustomerCreatedIntegrationEvent");
// Dapr cron job binding
app.MapPost("/ProductOutboxCron", async (ITxOutboxProcessor outboxProcessor) =>
await outboxProcessor.HandleAsync(typeof(CoolStore.IntegrationEvents.Anchor)));Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request