azure-maven-plugins
azure-maven-plugins copied to clipboard
I/O exception of application insight occurs when deploy function app
Plugin name and version
azure-functions-maven-plugin 1.3.5-SNAPSHOT
Plugin configuration in your pom.xml
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-maven-plugin</artifactId>
<configuration>
<resourceGroup>${functionResourceGroup}</resourceGroup>
<appName>${functionAppName}</appName>
<region>${functionAppRegion}</region>
<pricingTier>B3</pricingTier>
<deploymentType>RUN_FROM_ZIP</deploymentType>
<runtime>
<os>linux</os>
</runtime>
<appSettings>
<!-- Run Azure Function from package file by default -->
<property>
<name>FUNCTIONS_EXTENSION_VERSION</name>
<value>~3</value>
</property>
<property>
<name>AzureWebJobsStorage</name>
<value>xxxxx</value>
</property>
......
</appSettings>
</configuration>
<executions>
<execution>
<id>package-functions</id>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
Actual behavior

Also reproduced in version ID: commicrosoftazure-3573
