1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Update azure_rm_functionapp.py (#43638)

This commit is contained in:
Georg Öttl 2018-08-20 04:08:54 +02:00 committed by Yunge Zhu
parent 0c65bcb23b
commit d73e9a6508

View file

@ -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):