Hello experts,
When a function app is created (using the Powershell runtime), it comes with a requirements.psd1 which has this content
This file enables modules to be automatically managed by the Functions service.
@{
# For latest supported version, go to 'https://www.powershellgallery.com/packages/Az'.
# To use the Az module in your function app, please uncomment the line below.
'Az' = '6.*'
}
the line AZ=6.* is commented, is there a way that this line can be uncommented at deployment time using ARM template or Azure Powershell?