Hi @AzureSDE ,
To answer your question, only AspNetCoreModuleV2 supports the IIS In-Process hosting model for ASP.net Core; therefore, you should really be using V2 with your, I'm assuming, Windows hosted app.
If I may ask, what lead you to rolling back to AspNetCoreModule? Did you have any logs that you can share? If not, you can enabling them adding aspNetCore to <system.webServer>
in your web.config files
<aspNetCore processPath="dotnet" arguments=".\yourwebapp.dll" stdoutLogEnabled="true" stdoutLogFile="\\?\$home$\Logfiles\stdout" />
Regards,
Ryan