az functionapp config

Note

This command group has commands that are defined in both Azure CLI and at least one extension. Install each extension to benefit from its extended capabilities. Learn more about extensions.

Configure a function app.

Commands

Name Description Type Status
az functionapp config access-restriction

Methods that show, set, add, and remove access restrictions on a functionapp.

Core GA
az functionapp config access-restriction add

Adds an Access Restriction to the function app.

Core GA
az functionapp config access-restriction remove

Removes an Access Restriction from the functionapp.

Core GA
az functionapp config access-restriction set

Sets if SCM site is using the same restrictions as the main site.

Core GA
az functionapp config access-restriction show

Show Access Restriction settings for functionapp.

Core GA
az functionapp config appsettings

Configure function app settings.

Core GA
az functionapp config appsettings delete

Delete a function app's settings.

Core GA
az functionapp config appsettings list

Show settings for a function app.

Core GA
az functionapp config appsettings set

Update a function app's settings.

Core GA
az functionapp config container

Manage an existing function app's container settings.

Core and Extension GA
az functionapp config container delete

Delete an existing function app's container settings.

Core GA
az functionapp config container set

Set an existing function app's container settings.

Core GA
az functionapp config container set (appservice-kube extension)

Set an existing function app's container settings.

Extension GA
az functionapp config container show

Get details of a function app's container settings.

Core GA
az functionapp config hostname

Configure hostnames for a function app.

Core GA
az functionapp config hostname add

Bind a hostname to a function app.

Core GA
az functionapp config hostname delete

Unbind a hostname from a function app.

Core GA
az functionapp config hostname get-external-ip

Get the external-facing IP address for a function app.

Core GA
az functionapp config hostname list

List all hostname bindings for a function app.

Core GA
az functionapp config set

Set an existing function app's configuration.

Core GA
az functionapp config show

Get the details of an existing function app's configuration.

Core GA
az functionapp config ssl

Configure SSL certificates.

Core GA
az functionapp config ssl bind

Bind an SSL certificate to a function app.

Core GA
az functionapp config ssl create

Create a Managed Certificate for a hostname in a function app.

Core Preview
az functionapp config ssl delete

Delete an SSL certificate from a function app.

Core GA
az functionapp config ssl import

Import an SSL certificate to a function app from Key Vault.

Core GA
az functionapp config ssl list

List SSL certificates for a function app.

Core GA
az functionapp config ssl show

Show the details of an SSL certificate for a function app.

Core GA
az functionapp config ssl unbind

Unbind an SSL certificate from a function app.

Core GA
az functionapp config ssl upload

Upload an SSL certificate to a function app.

Core GA

az functionapp config set

Set an existing function app's configuration.

az functionapp config set [--always-on {false, true}]
                          [--auto-heal-enabled {false, true}]
                          [--ftps-state {AllAllowed, Disabled, FtpsOnly}]
                          [--generic-configurations]
                          [--http20-enabled {false, true}]
                          [--ids]
                          [--java-container]
                          [--java-container-version]
                          [--java-version]
                          [--linux-fx-version]
                          [--min-tls-version]
                          [--name]
                          [--net-framework-version]
                          [--number-of-workers]
                          [--php-version]
                          [--powershell-version]
                          [--prewarmed-instance-count]
                          [--python-version]
                          [--remote-debugging-enabled {false, true}]
                          [--resource-group]
                          [--slot]
                          [--startup-file]
                          [--subscription]
                          [--use-32bit-worker-process {false, true}]
                          [--vnet-route-all-enabled {false, true}]
                          [--web-sockets-enabled {false, true}]

Examples

Set the function app's configuration. (autogenerated)

az functionapp config set --always-on true --name MyFunctionApp --resource-group MyResourceGroup

set configuration through a JSON file called params.json

az functionapp config set -g MyResourceGroup -n MyFunctionApp --generic-configurations "@.\params.json"

Optional Parameters

--always-on

Ensure web app gets loaded all the time, rather unloaded after been idle. Recommended when you have continuous web jobs running.

accepted values: false, true
--auto-heal-enabled

Enable or disable auto heal.

accepted values: false, true
--ftps-state

Set the Ftps state value for an app. Default value is 'AllAllowed'.

accepted values: AllAllowed, Disabled, FtpsOnly
--generic-configurations

Provide site configuration list in a format of either key=value pair or @<json_file>. PowerShell and Windows Command Prompt users should use a JSON file to provide these configurations to avoid compatibility issues with escape characters.

--http20-enabled

Configures a web site to allow clients to connect over http2.0.

accepted values: false, true
--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

--java-container

The java container, e.g., Tomcat, Jetty.

--java-container-version

The version of the java container, e.g., '8.0.23' for Tomcat.

--java-version

The version used to run your web app if using Java, e.g., '1.7' for Java 7, '1.8' for Java 8.

--linux-fx-version

The runtime stack used for your linux-based webapp, e.g., "RUBY|2.5.5", "NODE|12LTS", "PHP|7.2", "DOTNETCORE|2.1". See https://aka.ms/linux-stacks for more info.

--min-tls-version

The minimum version of TLS required for SSL requests, e.g., '1.0', '1.1', '1.2'.

--name -n

Name of the function app.

--net-framework-version

The version used to run your web app if using .NET Framework, e.g., 'v4.0' for .NET 4.6 and 'v3.0' for .NET 3.5.

--number-of-workers

The number of workers to be allocated.

--php-version

The version used to run your web app if using PHP, e.g., 5.5, 5.6, 7.0.

--powershell-version

The version used to run your function app if using PowerShell, e.g., 7.2.

--prewarmed-instance-count

Number of pre-warmed instances a function app has.

--python-version

The version used to run your web app if using Python, e.g., 2.7, 3.4.

--remote-debugging-enabled

Enable or disable remote debugging.

accepted values: false, true
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--slot -s

The name of the slot. Default to the productions slot if not specified.

--startup-file

The startup file for linux hosted web apps, e.g. 'process.json' for Node.js web.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--use-32bit-worker-process

Use 32 bits worker process or not.

accepted values: false, true
--vnet-route-all-enabled

Configure regional VNet integration to route all traffic to the VNet.

accepted values: false, true
--web-sockets-enabled

Enable or disable web sockets.

accepted values: false, true
Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

accepted values: json, jsonc, none, table, tsv, yaml, yamlc
default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

az functionapp config show

Get the details of an existing function app's configuration.

az functionapp config show [--ids]
                           [--name]
                           [--resource-group]
                           [--slot]
                           [--subscription]

Examples

Get the details of a web app's configuration. (autogenerated)

az functionapp config show --name MyFunctionApp --resource-group MyResourceGroup

Optional Parameters

--ids

One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.

--name -n

Name of the function app.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--slot -s

The name of the slot. Default to the productions slot if not specified.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

accepted values: json, jsonc, none, table, tsv, yaml, yamlc
default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.