Hello @Amie Barkes ,
Azure Stream Analytics outputs events to several kinds of outputs:
as seen here.
You want to integrate with Azure App configuration.
I think you want to ingest these events using the controller of your website.
This means your controller needs to listen to incoming messages.
To do this, you need to ASA messages into something the controller can pick up.
I would suggest checking out Azure SignalR or Azure PubSub.
This means something like this (with signalR):
ASA Azure Function output -> Azure Function with SignalR call -> SignalR service <- Web app controller subscribed to SignalR messages
An older example of this solution can be found here.
If the response helped, do "Accept Answer". If it doesn't work, please let us know the progress. All community members with similar issues will benefit by doing so. Your contribution is highly appreciated.