An Azure service that provides an event-driven serverless compute platform.
Hello @Aaron W Pedwell
Unfortunately there is no option to create functionapp with https only set to true or on, as az cli does not appear to support this feature.
Microsoft is planning to add https only option to az cli in next releases
https://github.com/Azure/azure-cli/issues/14165
https://github.com/Azure/Azure-Functions/issues/1647
However you can use --generic-configurations option and specify HttpsOnly=true there
az functionapp config set --use-32bit-worker-process false --name '$(ProcessorFunctionName)' --resource-group '$(resourceGroupName)' --ftps 'FtpsOnly' --generic-configuration "{"HttpsOnly": true}"