An open API service indexing awesome lists of open source software.

https://github.com/arnab-developer/azfuncterraform

Create azure function with terraform
https://github.com/arnab-developer/azfuncterraform

Last synced: 6 months ago
JSON representation

Create azure function with terraform

Awesome Lists containing this project

README

          

# Azure Function Terraform

Create azure function with terraform. After creating the function, we need to deploy the code inside it.

Code deploy steps:

- Create a new function app in visual studio.
- Publish that function app in a folder.
- Zip that folder with `publish.zip` name.
- Run azure cli command to deploy in the azure function app.
```powershell
az functionapp deployment source config-zip `
-g "rg-terraapp1-dev" `
-n "func-terraapp1-dev" `
--src "./publish.zip"
```