From e5218deb6bb31567c6a28ebd0beea36415a9c997 Mon Sep 17 00:00:00 2001 From: yan xu <58940428+xyq175com@users.noreply.github.com> Date: Mon, 28 Nov 2022 23:14:14 +0800 Subject: [PATCH] Update a standard logic app with correct stack settings (#19399) * fix issue #18351: update a standard logic app with correct stack settings * fix issue #18351: update a standard logic app with correct stack settings * Update website/docs/r/logic_app_standard.html.markdown Co-authored-by: jackofallops <11830746+jackofallops@users.noreply.github.com> * fix format Signed-off-by: yan xu <58940428+xyq175com@users.noreply.github.com> * fix format by using terrafmt Signed-off-by: yan xu <58940428+xyq175com@users.noreply.github.com> Co-authored-by: Xu, Yan Co-authored-by: jackofallops <11830746+jackofallops@users.noreply.github.com> --- website/docs/r/logic_app_standard.html.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/docs/r/logic_app_standard.html.markdown b/website/docs/r/logic_app_standard.html.markdown index be65fcebb064b..8de57565467d6 100644 --- a/website/docs/r/logic_app_standard.html.markdown +++ b/website/docs/r/logic_app_standard.html.markdown @@ -47,6 +47,11 @@ resource "azurerm_logic_app_standard" "example" { app_service_plan_id = azurerm_app_service_plan.example.id storage_account_name = azurerm_storage_account.example.name storage_account_access_key = azurerm_storage_account.example.primary_access_key + + app_settings = { + "FUNCTIONS_WORKER_RUNTIME" = "node" + "WEBSITE_NODE_DEFAULT_VERSION" = "~18" + } } ```