azure-maven-plugins
azure-maven-plugins copied to clipboard
Deploy function app using low pricing tier is not available
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>Consumption</pricingTier>
<deploymentType>RUN_FROM_BLOB</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
-
Use
Consumption/Dedicatedpricing tier to deploy, function app is not available. Refresh later, the function app with theDedicatedpricing tier is available. but the function app with theConsumptionpricing tier always isn't available.
-
Use
Consumptionpricing tier to deploy function app. some times, it can show functions, but the logs show like below.

Plugin name and version
azure-functions-maven-plugin 1.4.1-SNAPSHOT
Actual behavior
Use Dedicated / Premium pricing tier to deploy under windows runtime, function app is not available. When updating the pricing tier of function app, function app is available
