From 6ccc166a9655e9dd948b4bb1d1fa7e41b9b651a1 Mon Sep 17 00:00:00 2001 From: markusleh Date: Fri, 29 May 2020 23:47:06 +0300 Subject: [PATCH] Fixed a typo from osType There is a typo in the code where osType is "Linux" instead of "linux". The format does not match with checks and other parts of the code such as in row 354. --- azurerm/internal/services/web/resource_arm_function_app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurerm/internal/services/web/resource_arm_function_app.go b/azurerm/internal/services/web/resource_arm_function_app.go index 47870acde88c..e5d143fff1fb 100644 --- a/azurerm/internal/services/web/resource_arm_function_app.go +++ b/azurerm/internal/services/web/resource_arm_function_app.go @@ -448,7 +448,7 @@ func resourceArmFunctionAppUpdate(d *schema.ResourceData, meta interface{}) erro kind := "functionapp" if osTypeRaw, ok := d.GetOk("os_type"); ok { osType := osTypeRaw.(string) - if osType == "Linux" { + if osType == "linux" { kind = "functionapp,linux" } }