Adding guidance for function app (#116)

* adding guidance for function app
This commit is contained in:
Xiaxin
2022-11-16 13:56:21 +08:00
committed by GitHub
parent 329bfd1f6e
commit e32966e242
6 changed files with 193 additions and 0 deletions

View File

@ -0,0 +1,13 @@
terraform {
required_version = ">=1.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>3.8"
}
}
}
provider "azurerm" {
features {}
}