Issue
Typo in key/value name
In the build.config.psd1 file, the override is called
AuthLevelOverrides = @{
# 'Set-Foo' = 'anonymous'
}
with the plural s in the end
but in the build script, we are looking for
if ($config.HttpTrigger.AuthLevelOverride.$($command.BaseName)) {
$authLevel = $config.HttpTrigger.AuthLevelOverride.$($command.BaseName)
}
without the plural s in the end
Issue
Typo in key/value name
In the build.config.psd1 file, the override is called
with the plural s in the end
but in the build script, we are looking for
without the plural s in the end