We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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