From 6dfb88048ba3f50b8365bf59836dc538414f3d04 Mon Sep 17 00:00:00 2001 From: Hong Yi Date: Sat, 20 Aug 2022 17:21:47 +0800 Subject: [PATCH] add support for static web app to caf_solution --- caf_solution/local.webapp.tf | 1 + caf_solution/variables.webapp.tf | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/caf_solution/local.webapp.tf b/caf_solution/local.webapp.tf index c69c19622..64844afb0 100644 --- a/caf_solution/local.webapp.tf +++ b/caf_solution/local.webapp.tf @@ -7,6 +7,7 @@ locals { app_services = var.app_services azurerm_application_insights = var.azurerm_application_insights function_apps = var.function_apps + static_sites = var.static_sites } ) } diff --git a/caf_solution/variables.webapp.tf b/caf_solution/variables.webapp.tf index 68afec4d7..3445b594b 100644 --- a/caf_solution/variables.webapp.tf +++ b/caf_solution/variables.webapp.tf @@ -23,4 +23,7 @@ variable "azurerm_application_insights" { } variable "function_apps" { default = {} -} \ No newline at end of file +} +variable "static_sites" { + default = {} +}