以前,使用 Azure CLI 脚本,我有以下存储帐户配置:
az webapp config storage-account add \
--resource-group $resourceGroup \
--name $functionAppName \
--storage-type AzureFiles \
--share-name $shareName \
--custom-id $shareId \
--account-name $AZURE_STORAGE_ACCOUNT \
--mount-path $mountPath \
现在,我正在尝试用 Bicep 编写这个,但我找不到任何mount-path
. 有没有可能在二头肌文件中设置它?