Skip to content

02 - First Deploy (Flex Consumption)

Provision Azure resources and deploy the Java reference application to the Flex Consumption (FC1) plan with repeatable CLI commands.

Prerequisites

Tool Version Purpose
JDK 17+ Compile and run Java functions locally
Maven 3.6+ Build and package Java artifacts
Azure Functions Core Tools v4 Start local host and publish artifacts
Azure CLI 2.61+ Provision Azure resources and inspect app state
Azure subscription Active Target for deployment

Flex Consumption plan basics

Flex Consumption (FC1) keeps serverless economics while adding VNet integration, configurable instance memory (512 MB to 4096 MB), and per-function scaling. Microsoft recommends it for many new apps.

What You'll Build

You will provision a Linux Flex Consumption Function App for Java, deploy with func azure functionapp publish from the Maven staging directory, and validate HTTP endpoints.

Network Scenario Choices

This tutorial deploys with public networking. FC1 supports full private networking:

Scenario Description Guide
Public Only No VNet (this tutorial) Current page
Private Egress VNet + Storage PE Private Egress
Private Ingress + Site Private Endpoint Private Ingress
Fixed Outbound IP + NAT Gateway Fixed Outbound

Infrastructure Context

Plan: Flex Consumption (FC1) | Network: VNet integration supported | Storage auth: SystemAssigned MI

Flex Consumption uses blob-based deployment storage with managed identity authentication, unlike Consumption which uses Azure Files with connection strings.

flowchart TD
    INET[Internet] -->|HTTPS| FA[Function App\nFlex Consumption FC1\nLinux Java 17]

    FA -->|"SystemAssigned MI"| ST[Storage Account\nBlob deployment]
    FA --> AI[Application Insights]

    subgraph STORAGE[Storage Services]
        ST --- DEPLOY["Blob Container\napp-package"]
    end

    style FA fill:#0078d4,color:#fff
    style STORAGE fill:#FFF3E0
flowchart TD
    A[Set variables + login] --> B[Create RG + storage]
    B --> C[Create deployment container]
    C --> D[Create function app]
    D --> E[Assign Storage Blob Data Contributor]
    E --> F[Set placeholder settings]
    F --> G["Build + publish from staging dir"]
    G --> H[Validate endpoints]

Steps

Step 1 - Set variables and sign in

export RG="rg-func-java-flex-demo"
export APP_NAME="func-jflex-$(date +%m%d%H%M)"
export STORAGE_NAME="stjflex$(date +%m%d)"
export LOCATION="koreacentral"

az login
az account set --subscription "<subscription-id>"
Command/Parameter Purpose
export RG Define the resource group name for logical grouping
export APP_NAME Set a unique name for the function app using a timestamp
export STORAGE_NAME Define a short, unique name for the storage account
export LOCATION Select the target Azure region (koreacentral)
az login Authenticate the Azure CLI session
az account set Select the target Azure subscription for deployment

Step 2 - Create resource group and storage account

az group create --name "$RG" --location "$LOCATION"

az storage account create \
  --name "$STORAGE_NAME" \
  --resource-group "$RG" \
  --location "$LOCATION" \
  --sku Standard_LRS \
  --kind StorageV2
Command/Parameter Purpose
az group create Provision a resource group to hold all related resources
--name "$RG" Name of the resource group
--location "$LOCATION" Target Azure region for the group
az storage account create Provision an Azure Storage account for function state and logs
--sku Standard_LRS Use Standard Locally Redundant Storage for cost-effectiveness
--kind StorageV2 Select the general-purpose v2 storage account type

Step 3 - Create the deployment container

az storage container create \
  --name app-package \
  --account-name "$STORAGE_NAME" \
  --auth-mode login
Command/Parameter Purpose
az storage container create Create a blob container for deployment packages
--name app-package Specify the mandatory name for Flex Consumption deployment containers
--auth-mode login Authenticate the request using the current user's identity

Container must exist before function app creation

Flex Consumption requires a pre-existing blob container for deployment packages. If the container does not exist, az functionapp create fails with a ContainerNotFound error.

Step 4 - Create function app

az functionapp create \
  --name "$APP_NAME" \
  --resource-group "$RG" \
  --storage-account "$STORAGE_NAME" \
  --runtime java \
  --runtime-version 17 \
  --functions-version 4 \
  --flexconsumption-location "$LOCATION" \
  --deployment-storage-name "$STORAGE_NAME" \
  --deployment-storage-container-name app-package \
  --deployment-storage-auth-type SystemAssignedIdentity
Command/Parameter Purpose
az functionapp create Provision a serverless Linux function app on Flex Consumption
--flexconsumption-location Select the target region for the Flex Consumption (FC1) plan
--runtime java Set the serverless execution runtime to Java
--runtime-version 17 Specify Java 17 as the target runtime version
--deployment-storage-name Define the storage account for deployment artifacts
--deployment-storage-container-name Specify the blob container for deployment packages
--deployment-storage-auth-type Use managed identity for authenticating deployment storage access

Flex Consumption vs Consumption CLI differences

Flex Consumption uses --flexconsumption-location instead of --consumption-plan-location. It also requires --deployment-storage-name, --deployment-storage-container-name, and --deployment-storage-auth-type parameters.

Auto-created Application Insights

az functionapp create automatically provisions an Application Insights resource and links it to the function app.

Step 5 - Assign Storage Blob Data Contributor role

The managed identity needs explicit permission to write deployment packages to blob storage:

PRINCIPAL_ID=$(az functionapp identity show \
  --name "$APP_NAME" \
  --resource-group "$RG" \
  --query principalId \
  --output tsv)

STORAGE_ID=$(az storage account show \
  --name "$STORAGE_NAME" \
  --resource-group "$RG" \
  --query id \
  --output tsv)

az role assignment create \
  --assignee "$PRINCIPAL_ID" \
  --role "Storage Blob Data Contributor" \
  --scope "$STORAGE_ID"
Command/Parameter Purpose
az functionapp identity show Retrieve the principal ID of the function app's managed identity
az storage account show Retrieve the resource ID of the storage account
az role assignment create Grant the function app permission to read/write deployment blobs
--role "Storage Blob Data Contributor" Assign the necessary permissions for blob-based deployments

Role propagation delay

Azure role assignments can take 1-2 minutes to propagate. If publishing fails with a 403 error immediately after assignment, wait and retry.

Step 6 - Set placeholder trigger settings

STORAGE_CONN=$(az storage account show-connection-string \
  --name "$STORAGE_NAME" \
  --resource-group "$RG" \
  --output tsv)

az functionapp config appsettings set \
  --name "$APP_NAME" \
  --resource-group "$RG" \
  --settings \
    "QueueStorage=$STORAGE_CONN" \
    "EventHubConnection=Endpoint=sb://placeholder.servicebus.windows.net/;SharedAccessKeyName=placeholder;SharedAccessKey=cGxhY2Vob2xkZXI=;EntityPath=placeholder"
Command/Parameter Purpose
az storage account show-connection-string Retrieve the connection string for the storage account
az functionapp config appsettings set Update function app configuration settings
--settings "QueueStorage=$STORAGE_CONN" Configure the real storage connection for the queue trigger
--settings "EventHubConnection=..." Provide a placeholder for the Event Hub trigger to prevent indexing errors

Placeholder settings prevent host crashes

The Java reference app includes triggers for Queue, EventHub, Blob, and Timer. Use connection string format for EventHubConnection — the __fullyQualifiedNamespace format triggers DefaultAzureCredential which may not be configured for all services.

FUNCTIONS_WORKER_RUNTIME is platform-managed

On Flex Consumption, FUNCTIONS_WORKER_RUNTIME is set by the platform during az functionapp create. You cannot set it manually via app settings.

Step 7 - Build and publish

cd apps/java
mvn clean package
Command/Parameter Purpose
cd apps/java Change directory to the Java reference application root
mvn clean package Clean build and package the Maven project into a JAR

Must publish from Maven staging directory

Java function apps must be published from the Maven staging directory, NOT from the project root. The azure-functions-maven-plugin generates function.json files in target/azure-functions/<appName>/. Publishing from the project root uploads the package but functions will not be indexed (0 functions found).

cd target/azure-functions/azure-functions-java-guide
func azure functionapp publish "$APP_NAME"
Command/Parameter Purpose
cd target/azure-functions/... Change directory to the Maven-generated staging folder
func azure functionapp publish Deploy the Java JAR and configuration to Azure

Upload size

Java function apps deploy a JAR plus function.json files, resulting in ~326 KB uploads.

Step 8 - Validate deployment

# Wait for publish completion, indexing, and worker warmup
echo "Waiting for Java functions to appear..."

for attempt in 1 2 3 4 5 6; do
  az functionapp function list \
    --name "$APP_NAME" \
    --resource-group "$RG" \
    --output table

  if [ "$(az functionapp function list \
    --name "$APP_NAME" \
    --resource-group "$RG" \
    --query "length(@)" \
    --output tsv)" -gt 0 ]; then
    break
  fi

  echo "Functions not indexed yet. Waiting 30 seconds before retrying..."
  sleep 30
done

# List deployed functions one more time for confirmation
az functionapp function list \
  --name "$APP_NAME" \
  --resource-group "$RG" \
  --output table

# Test the health endpoint
curl --request GET "https://$APP_NAME.azurewebsites.net/api/health"

# Test the hello endpoint
curl --request GET "https://$APP_NAME.azurewebsites.net/api/hello/FlexTest"

# Test the info endpoint
curl --request GET "https://$APP_NAME.azurewebsites.net/api/info"
Command/Parameter Purpose
for attempt in 1 2 3 4 5 6 Retries function discovery for up to about 3 minutes after publish
az functionapp function list Verify that all expected functions are indexed
--output table Display the list in a human-readable table format
curl --request GET Test the HTTP endpoints for functionality

Java function activation can lag behind publish completion

func azure functionapp publish can finish before the Java worker has fully started and indexed all functions. If az functionapp function list is empty or every endpoint returns 404, wait another 30 seconds and retry. In real deployments, initial indexing can take up to 2-3 minutes.

If functions stay empty

Re-run az functionapp function list until functions appear. If the list remains empty after several minutes, confirm that you published from target/azure-functions/azure-functions-java-guide/ so the generated function.json files were included in the deployment package.

Step 9 - Review Flex Consumption-specific notes

  • Flex Consumption uses --flexconsumption-location instead of --consumption-plan-location.
  • Flex Consumption uses blob-based deployment storage, not Azure Files.
  • Managed identity is enabled by default — the /api/identity endpoint confirms this.
  • FUNCTIONS_WORKER_RUNTIME is platform-managed; do not set it manually.
  • Cold starts may be shorter than Consumption due to configurable instance memory.

Verification

Function list output (showing key fields):

[
  {
    "name": "helloHttp",
    "type": "Microsoft.Web/sites/functions",
    "invokeUrlTemplate": "https://<app-name>.azurewebsites.net/api/hello/{name}",
    "language": "java",
    "isDisabled": false
  }
]

Health endpoint response:

{"status":"healthy","timestamp":"2026-04-09T16:52:04.603Z","version":"1.0.0"}

Hello endpoint response:

{"message":"Hello, FlexTest"}

Info endpoint response:

{"name":"azure-functions-java-guide","version":"1.0.0","java":"17.0.14","os":"Linux","environment":"production","functionApp":"func-jflex-04100144"}

Identity probe (confirms managed identity is active on Flex Consumption):

{"managedIdentity":true,"identityEndpoint":"configured"}

Next Steps

Next: 03 - Configuration

See Also

Sources