From d73e9a6508f7721bf300ec26d4f2a3f69dcdfb87 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Georg=20=C3=96ttl?= <georg.oettl@gmail.com>
Date: Mon, 20 Aug 2018 04:08:54 +0200
Subject: [PATCH] Update azure_rm_functionapp.py (#43638)

---
 lib/ansible/modules/cloud/azure/azure_rm_functionapp.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/ansible/modules/cloud/azure/azure_rm_functionapp.py b/lib/ansible/modules/cloud/azure/azure_rm_functionapp.py
index 430682ff34..0432bb110d 100644
--- a/lib/ansible/modules/cloud/azure/azure_rm_functionapp.py
+++ b/lib/ansible/modules/cloud/azure/azure_rm_functionapp.py
@@ -271,7 +271,7 @@ class AzureRMFunctionApp(AzureRMModuleBase):
             function_app_settings.append(NameValuePair(name=key, value=self.storage_connection_string))
         function_app_settings.append(NameValuePair(name='FUNCTIONS_EXTENSION_VERSION', value='~1'))
         function_app_settings.append(NameValuePair(name='WEBSITE_NODE_DEFAULT_VERSION', value='6.5.0'))
-        function_app_settings.append(NameValuePair(name='WEBSITE_CONTENTSHARE', value=self.storage_account))
+        function_app_settings.append(NameValuePair(name='WEBSITE_CONTENTSHARE', value=self.name))
         return function_app_settings
 
     def aggregated_app_settings(self):