Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 4 Next »

1.Configuration Settings

You can create any number of application settings required by your function code. There are also predefined application settings used by Functions. These settings are stored encrypted.

The Get-AzFunctionAppSetting cmdlet returns the existing application settings, as in the following example:

Get-AzFunctionAppSetting -Name <FUNCTION_APP_NAME> -ResourceGroupName <RESOURCE_GROUP_NAME>

The Update-AzFunctionAppSetting command adds or updates an application setting. The following example creates a setting with a key named CUSTOM_FUNCTION_APP_SETTING and a value of 12345 :

Update-AzFunctionAppSetting -Name <FUNCTION_APP_NAME> -ResourceGroupName <RESOURCE_GROUP_NAME> -AppSetting @{"CUSTOM_FUNCTION_APP_SETTING" = "12345"}

2.Deployment Settings

3.Hosting plan type

4.Hosting plan migration

  • No labels