We have several Java Spring Boot based App Services that are solely integrated with Event Hub to publish and/or consume events. We would like to leverage Deployment Slots to do some level of Blue/Green deployments with these apps, but given the nuances of event driven architecture (e.g. no HTTP, how to maintain consumer group integrity, etc), this is proving to be a bit challenging. I have seen this link which discusses how this could potentially be done with Azure Functions that are integrated with Event Hub: https://stackoverflow.com/questions/64170709/using-azure-function-deployment-slots-with-eventhub, but this solution assumes you are using App Settings to configure things such as consumer groups. In our case, we are using App Configuration for all our application configuration and before we look to move some app properties back to App Settings (which I would prefer not to do), I just wanted to see if any of you have solved this challenge of using Deployment Slots with App Services that are integrated with Event Hub.