Skip to content

Instantly share code, notes, and snippets.

@jwlin
jwlin / function-app-deploy.tf
Created January 20, 2025 17:19
Minimum working Terraform example to create Azure Function app with a secure storage
provider "azurerm" {
features {}
subscription_id = "<your-subscription-id>"
}
data "azurerm_resource_group" "your_resource_group" {
name = "<your-resource-group-name>"
}
data "azurerm_virtual_network" "your_vnet" {