Skip to content

Commit 671b813

Browse files
committed
Comment out the AZ CLI update support for Flex AZ
1 parent 92f7873 commit 671b813

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

articles/reliability/reliability-functions.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,21 +178,23 @@ Before updating your Flex Consumption plan to be zone-redundant, consider updati
178178
- Update the storage related application settings of the app, like `AzureWebJobsStorage`, to reference the zone redundant storage account. See [Work with application settings](../azure-functions/functions-how-to-use-azure-function-app-settings.md#use-application-settings).
179179
- Update the deployment storage account for the app, which can be the same or different as the storage account associated with the app. See [Configure deployment settings](../azure-functions/flex-consumption-how-to.md#configure-deployment-settings).
180180

181-
Once the storage account(s) associated with the app have been updated, you can update the Flex Consumption plan to be zone-redundant. This will cause the Flex Consumption app in the plan to restart. There are currently multiple ways to update a zone-redundant Flex Consumption plan.
181+
Once the storage account(s) associated with the app have been updated, you can update the Flex Consumption plan to be zone-redundant using Bicep or ARM templates. This will cause the Flex Consumption app in the plan to restart.
182182

183183
# [Azure portal](#tab/azure-portal)
184184
Not currently supported.
185185

186186
# [Azure CLI](#tab/azure-cli)
187+
Not currently supported.
187188

189+
<-- Uncomment once AZ support is fixed:
188190
1. Update the Flex Consumption app and set the `--zone-redundant true` parameter:
189191

190192
```azurecli
191193
PLAN_RESOURCE_ID=$(az functionapp show --resource-group <RESOURCE_GROUP> --name <APP_NAME> --query "properties.serverFarmId" -o tsv)
192194
193195
az functionapp plan update --ids $PLAN_RESOURCE_ID --set zoneRedundant=true
194196
```
195-
197+
-->
196198
# [Bicep template](#tab/bicep)
197199
198200
Follow the same instructions as in [Create a zone-redundant Flex Consumption app](#create-a-zone-redundant-flex-consumption-plan) to add the `zoneRedundant` property to the plan definition.

0 commit comments

Comments
 (0)