Configuring Event Grid return using configuration

70 Views Asked by At

I am working on an Azure Functions PoC that can communicate with event grid. I am trying to connect to the endpoint with a topic key and uri.

 [FunctionName("MyFunction1")]
 [return: EventGrid(TopicEndpointUri = "MyEventGridTopicUriSetting", TopicKeySetting = "MyEventGridTopicKeySetting")]
 public async Task<CloudEvent> Run([EventGridTrigger]CloudEvent cloudEvent)
 {
     // ...

     return new CloudEvent(
         "/myfunction1/add/",
         "Internal.EventRecorded",
         new
         {
             EventId = cloudEvent.Id,
             CorrelationId = correlationId
         }
     );
 }

Eventually this function will need to be deployed across multiple subscriptions so the uri and topic key attributes will change. Is there anyway to achieve this?

1

There are 1 best solutions below

3
On

The strings used here in the attribute are app settings defined on your Azure Function resource.

So, the code itself would not have to change but when creating the Azure Function resource, you would set the value to depending on the subscription it's in.

This should be handled in your ARM/Bicep Templates with which you are creating the underlying resources.