Skip to content

Instantly share code, notes, and snippets.

@maximivanov
Created January 10, 2021 14:38
Show Gist options
  • Save maximivanov/8bbca65f512997b963ff1274815479c2 to your computer and use it in GitHub Desktop.
Save maximivanov/8bbca65f512997b963ff1274815479c2 to your computer and use it in GitHub Desktop.
Create a Node.js Azure Function app into the existing resource group, storage account, app service plan; skip creating an App Insights instance.
az functionapp create \
--resource-group proj-dev-resource-group \
--storage-account projdevstorage \
--plan proj-dev-app-service-plan \
--runtime node \
--runtime-version 12 \
--os-type Linux \
--functions-version 3 \
--name proj-dev-function-app \
--disable-app-insights true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment