├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── function-app-dedicated-plan ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── main.bicep ├── function-app-deployment-slot ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── main.bicep ├── function-app-linux-consumption-remote-build ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── main.bicep ├── function-app-linux-consumption ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── main.bicep ├── function-app-linux-flex-consumption ├── README.md ├── azuredeploy.json └── azuredeploy.parameters.json ├── function-app-premium-plan ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── main.bicep ├── function-app-private-endpoints-storage-private-endpoints ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── images │ └── function-app-private-endpoints-storage-private-endpoints.jpg └── main.bicep ├── function-app-storage-private-endpoints ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── images │ └── function-app-storage-private-endpoints.jpg └── main.bicep ├── function-app-vnet-integration ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── main.bicep ├── function-app-windows-consumption ├── README.md ├── azuredeploy.json ├── azuredeploy.parameters.json └── main.bicep ├── images └── deploytoazure.png ├── zip-deploy-arm-az-cli ├── README.md ├── azuredeploy.json └── azuredeploy.parameters.json ├── zip-deploy-arm-github-workflow ├── README.md ├── azuredeploy.json └── workflow.yml └── zip-deploy-run-from-package ├── README.md ├── azuredeploy.json └── azuredeploy.parameters.json /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/README.md -------------------------------------------------------------------------------- /function-app-dedicated-plan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-dedicated-plan/README.md -------------------------------------------------------------------------------- /function-app-dedicated-plan/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-dedicated-plan/azuredeploy.json -------------------------------------------------------------------------------- /function-app-dedicated-plan/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-dedicated-plan/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-dedicated-plan/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-dedicated-plan/main.bicep -------------------------------------------------------------------------------- /function-app-deployment-slot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-deployment-slot/README.md -------------------------------------------------------------------------------- /function-app-deployment-slot/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-deployment-slot/azuredeploy.json -------------------------------------------------------------------------------- /function-app-deployment-slot/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-deployment-slot/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-deployment-slot/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-deployment-slot/main.bicep -------------------------------------------------------------------------------- /function-app-linux-consumption-remote-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption-remote-build/README.md -------------------------------------------------------------------------------- /function-app-linux-consumption-remote-build/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption-remote-build/azuredeploy.json -------------------------------------------------------------------------------- /function-app-linux-consumption-remote-build/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption-remote-build/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-linux-consumption-remote-build/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption-remote-build/main.bicep -------------------------------------------------------------------------------- /function-app-linux-consumption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption/README.md -------------------------------------------------------------------------------- /function-app-linux-consumption/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption/azuredeploy.json -------------------------------------------------------------------------------- /function-app-linux-consumption/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-linux-consumption/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-consumption/main.bicep -------------------------------------------------------------------------------- /function-app-linux-flex-consumption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-flex-consumption/README.md -------------------------------------------------------------------------------- /function-app-linux-flex-consumption/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-flex-consumption/azuredeploy.json -------------------------------------------------------------------------------- /function-app-linux-flex-consumption/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-linux-flex-consumption/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-premium-plan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-premium-plan/README.md -------------------------------------------------------------------------------- /function-app-premium-plan/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-premium-plan/azuredeploy.json -------------------------------------------------------------------------------- /function-app-premium-plan/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-premium-plan/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-premium-plan/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-premium-plan/main.bicep -------------------------------------------------------------------------------- /function-app-private-endpoints-storage-private-endpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-private-endpoints-storage-private-endpoints/README.md -------------------------------------------------------------------------------- /function-app-private-endpoints-storage-private-endpoints/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-private-endpoints-storage-private-endpoints/azuredeploy.json -------------------------------------------------------------------------------- /function-app-private-endpoints-storage-private-endpoints/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-private-endpoints-storage-private-endpoints/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-private-endpoints-storage-private-endpoints/images/function-app-private-endpoints-storage-private-endpoints.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-private-endpoints-storage-private-endpoints/images/function-app-private-endpoints-storage-private-endpoints.jpg -------------------------------------------------------------------------------- /function-app-private-endpoints-storage-private-endpoints/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-private-endpoints-storage-private-endpoints/main.bicep -------------------------------------------------------------------------------- /function-app-storage-private-endpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-storage-private-endpoints/README.md -------------------------------------------------------------------------------- /function-app-storage-private-endpoints/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-storage-private-endpoints/azuredeploy.json -------------------------------------------------------------------------------- /function-app-storage-private-endpoints/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-storage-private-endpoints/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-storage-private-endpoints/images/function-app-storage-private-endpoints.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-storage-private-endpoints/images/function-app-storage-private-endpoints.jpg -------------------------------------------------------------------------------- /function-app-storage-private-endpoints/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-storage-private-endpoints/main.bicep -------------------------------------------------------------------------------- /function-app-vnet-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-vnet-integration/README.md -------------------------------------------------------------------------------- /function-app-vnet-integration/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-vnet-integration/azuredeploy.json -------------------------------------------------------------------------------- /function-app-vnet-integration/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-vnet-integration/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-vnet-integration/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-vnet-integration/main.bicep -------------------------------------------------------------------------------- /function-app-windows-consumption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-windows-consumption/README.md -------------------------------------------------------------------------------- /function-app-windows-consumption/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-windows-consumption/azuredeploy.json -------------------------------------------------------------------------------- /function-app-windows-consumption/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-windows-consumption/azuredeploy.parameters.json -------------------------------------------------------------------------------- /function-app-windows-consumption/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/function-app-windows-consumption/main.bicep -------------------------------------------------------------------------------- /images/deploytoazure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/images/deploytoazure.png -------------------------------------------------------------------------------- /zip-deploy-arm-az-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-arm-az-cli/README.md -------------------------------------------------------------------------------- /zip-deploy-arm-az-cli/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-arm-az-cli/azuredeploy.json -------------------------------------------------------------------------------- /zip-deploy-arm-az-cli/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-arm-az-cli/azuredeploy.parameters.json -------------------------------------------------------------------------------- /zip-deploy-arm-github-workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-arm-github-workflow/README.md -------------------------------------------------------------------------------- /zip-deploy-arm-github-workflow/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-arm-github-workflow/azuredeploy.json -------------------------------------------------------------------------------- /zip-deploy-arm-github-workflow/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-arm-github-workflow/workflow.yml -------------------------------------------------------------------------------- /zip-deploy-run-from-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-run-from-package/README.md -------------------------------------------------------------------------------- /zip-deploy-run-from-package/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-run-from-package/azuredeploy.json -------------------------------------------------------------------------------- /zip-deploy-run-from-package/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/function-app-arm-templates/HEAD/zip-deploy-run-from-package/azuredeploy.parameters.json --------------------------------------------------------------------------------