Last active
May 6, 2020 05:13
-
-
Save finesse-fingers/a1772d74bdc90628b28d2d363611d398 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set other app settings | |
$values = [System.IO.File]::ReadAllText($appSettings) | |
$appSettingsList = $values.Split([System.Environment]::NewLine) | |
echo "setting app settings: $appSettingsList" | |
az functionapp config appsettings set ` | |
--name $functionAppName ` | |
--resource-group $resourceGroup ` | |
--settings $appSettingsList |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
settingName__connectionString=value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment