Skip to content

Commit

Permalink
azurerm_linux_function_app: Nuances of Application Code Deployment (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
azarboon authored Jan 7, 2025
1 parent c0325e8 commit 09cb4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/r/linux_function_app.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: |-
Manages a Linux Function App.

> [!NOTE]
> This Terraform resource is limited to creating the Function App resource. To package and deploy your code logic to the Function App, you can use a separate tool, such as [Azure Functions Core Tools](https://learn.microsoft.com/azure/azure-functions/functions-run-local).
> This Terraform resource is specifically designed to provision the infrastructure for a Function App, which can host one or more individual functions. To package and deploy application code to the Function App, tools like [Azure Functions Core Tools](https://learn.microsoft.com/azure/azure-functions/functions-run-local) or Azure CLI can be utilized. With the current toolset, application code deployment must typically be performed individually for each Function App. It is also important to note that after a Terraform deployment, particularly if the `azurerm_linux_function_app` resource is recreated due to changes in critical properties (such as the OS type, runtime stack, or App Service Plan), previously deployed application code may be removed, necessitating redeployment. This process can, however, be streamlined and automated using custom scripts or CI/CD pipelines.

## Example Usage
Expand Down

0 comments on commit 09cb4bc

Please sign in to comment.