Limits and configuration reference for Azure Logic Apps

For Power Automate, review Limits and configuration in Power Automate.

This reference guide describes the limits and configuration information for Azure Logic Apps and related resources. Based on your scenario, solution requirements, the capabilities that you want, and the environment where you want to run your workflows, you choose whether to create a Consumption logic app workflow that runs in multi-tenant Azure Logic Apps. Or, create a Standard logic app workflow that runs in single-tenant Azure Logic Apps or an App Service Environment (v3 - Windows plans only).

Note

Many limits are the same across the available environments where Azure Logic Apps runs, but differences are noted where they exist.

The following table briefly summarizes differences between a Consumption logic app and a Standard logic app. You'll also learn how single-tenant Azure Logic Apps compares to multitenant Azure Logic Apps and an ISE for deploying, hosting, and running your logic app workflows.

Resource type Benefits Resource sharing and usage Pricing and billing model Limits management
Logic App (Consumption)

Host environment: Multi-tenant Azure Logic Apps
- Easiest to get started

- Pay-for-what-you-use

- Fully managed
A single logic app can have only one workflow.

Logic apps across Azure Active Directory tenants share the same processing (compute), storage, network, and so on.

For redundancy purposes, data is replicated in the paired region. For high availability, geo-redundant storage (GRS) is enabled.
Consumption (pay-per-execution) Azure Logic Apps manages the default values for these limits, but you can change some of these values, if that option exists for a specific limit.
Logic App (Standard)

Host environment:
Single-tenant Azure Logic Apps
- Run using the single-tenant Azure Logic Apps runtime. Deployment slots are currently not supported.

- More built-in connectors for higher throughput and lower costs at scale

- More control and fine-tuning capability around runtime and performance settings

- Integrated support for virtual networks and private endpoints.

- Create your own built-in connectors.
A single logic app can have multiple stateful and stateless workflows.

Workflows in a single logic app and tenant share the same processing (compute), storage, network, and so on.

Data stays in the same region where you deploy your logic apps.
Standard, based on a hosting plan with a selected pricing tier.

If you run stateful workflows, which use external storage, the Azure Logic Apps runtime makes storage transactions that follow Azure Storage pricing.
You can change the default values for many limits, based on your scenario's needs.

Important: Some limits have hard upper maximums. In Visual Studio Code, the changes you make to the default limit values in your logic app project configuration files won't appear in the designer experience. For more information, see Edit app and environment settings for logic apps in single-tenant Azure Logic Apps.

Workflow definition limits

The following tables list the values for a single workflow definition:

Name Limit Notes
Workflows per region per Azure subscription - Consumption: 1,000 workflows where each logic app is limited to 1 workflow

- Standard: Unlimited, based on the selected hosting plan, app activity, size of machine instances, and resource usage, where each logic app can have multiple workflows
Workflow - Maximum name length - Consumption: 80 characters

- Standard: 32 characters
Triggers per workflow - Consumption (designer): 1 trigger
- Consumption (JSON): 10 triggers

- Standard: 1 trigger
- Consumption: Multiple triggers are possible only when you work on the JSON workflow definition, whether in code view or an Azure Resource Manager (ARM) template, not the designer.

- Standard: Only one trigger is possible, whether in the designer, code view, or an Azure Resource Manager (ARM) template.
Actions per workflow 500 actions To extend this limit, you can use nested workflows as necessary.
Actions nesting depth 8 actions To extend this limit, you can use nested workflows as necessary.
Single trigger or action - Maximum name length 80 characters
Single trigger or action - Maximum input or output size 104,857,600 bytes
(105 MB)
To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.
Single action - Maximum combined inputs and outputs size 209,715,200 bytes
(210 MB)
To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.
Expression character limit 8,192 characters
description - Maximum length 256 characters
parameters - Maximum number of items 50 parameters
outputs - Maximum number items 10 outputs
trackedProperties - Maximum size 8,000 characters

Run duration and history retention limits

The following table lists the values for a single workflow run:

Name Multi-tenant Single-tenant Notes
Run history retention in storage 90 days 90 days
(Default)
The amount of time to keep a workflow's run history in storage after a run starts.

Note: If the workflow's run duration exceeds the retention limit, this run is removed from the run history in storage. If a run isn't immediately removed after reaching the retention limit, the run is removed within 7 days.

Whether a run completes or times out, run history retention is always calculated by using the run's start time and the current limit specified in the workflow setting, Run history retention in days. No matter the previous limit, the current limit is always used for calculating retention.

For more information, review Change duration and run history retention in storage.

Run duration 90 days - Stateful workflow: 90 days
(Default)

- Stateless workflow: 5 min
(Default)

The amount of time that a workflow can continue running before forcing a timeout.

The run duration is calculated by using a run's start time and the limit that's specified in the workflow setting, Run history retention in days at that start time.

Important: Make sure the run duration value is always less than or equal to the run history retention in storage value. Otherwise, run histories might be deleted before the associated jobs are complete.

For more information, review Change run duration and history retention in storage.

Recurrence interval - Min: 1 sec

- Max: 500 days

- Min: 1 sec

- Max: 500 days

Change run duration and history retention in storage

If a run's duration exceeds the current run history retention limit, the run is removed from the runs history in storage. To avoid losing run history, make sure that the retention limit is always more than the run's longest possible duration.

For Consumption logic app workflows, the same setting controls the maximum number of days that a workflow can run and for keeping run history in storage.

  • In multitenant Azure Logic Apps, the 90-day default limit is the same as the maximum limit. You can only decrease this value.

  • In an ISE, you can decrease or increase the 90-day default limit.

For example, suppose that you reduce the retention limit from 90 days to 30 days. A 60-day-old run is removed from the runs history. If you increase the retention period from 30 days to 60 days, a 20-day-old run stays in the runs history for another 40 days.

Portal

  1. In the Azure portal search box, open your logic app workflow in the designer.

  2. On the logic app menu, select Workflow settings.

  3. Under Runtime options, from the Run history retention in days list, select Custom.

  4. Drag the slider to change the number of days that you want.

  5. When you're done, on the Workflow settings toolbar, select Save.

ARM template

If you use an Azure Resource Manager template, this setting appears as a property in your workflow's resource definition.

{
   "name": "{logic-app-name}",
   "type": "Microsoft.Logic/workflows",
   "location": "{Azure-region}",
   "apiVersion": "2019-05-01",
   "properties": {
      "definition": {},
      "parameters": {},
      "runtimeConfiguration": {
         "lifetime": {
            "unit": "day",
            "count": {number-of-days}
         }
      }
   }
}

Looping, concurrency, and debatching limits

The following table lists the values for a single workflow run:

Loop actions

For each loop

The following table lists the values for a For each loop:

Name Multi-tenant Single-tenant Notes
Array items 100,000 items - Stateful workflow: 100,000 items
(Default)

- Stateless workflow: 100 items
(Default)

The number of array items that a For each loop can process.

To filter larger arrays, you can use the query action.

To change the default limit in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Concurrent iterations Concurrency off: 20

Concurrency on:

- Default: 20
- Min: 1
- Max: 50

Concurrency off: 20
(Default)

Concurrency on:

- Default: 20
- Min: 1
- Max: 50

The number of For each loop iterations that can run at the same time, or in parallel.

To change this value in the multi-tenant service, see Change For each concurrency limit or Run For each loops sequentially.

To change the default limit in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Until loop

The following table lists the values for an Until loop:

Name Multi-tenant Single-tenant Notes
Iterations - Default: 60
- Min: 1
- Max: 5,000
Stateful workflow:

- Default: 60
- Min: 1
- Max: 5,000

Stateless workflow:

- Default: 60
- Min: 1
- Max: 100

The number of cycles that an Until loop can have during a workflow run.

To change this value in the multi-tenant service, in the Until loop shape, select Change limits, and specify the value for the Count property.

To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Timeout Default: PT1H (1 hour) Stateful workflow: PT1H (1 hour)

Stateless workflow: PT5M (5 min)

The amount of time that the Until loop can run before exiting and is specified in ISO 8601 format. The timeout value is evaluated for each loop cycle. If any action in the loop takes longer than the timeout limit, the current cycle doesn't stop. However, the next cycle doesn't start because the limit condition isn't met.

To change this value in the multi-tenant service, in the Until loop shape, select Change limits, and specify the value for the Timeout property.

To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Concurrency and debatching

Name Multi-tenant Single-tenant Notes
Trigger - concurrent runs Concurrency off: Unlimited

Concurrency on (irreversible):

- Default: 25
- Min: 1
- Max: 100

The number of concurrent runs that a trigger can start at the same time, or in parallel.

Note: When concurrency is turned on, the SplitOn limit is reduced to 100 items for debatching arrays.

To change this value in the multi-tenant service, see Change trigger concurrency limit or Trigger instances sequentially.

Maximum waiting runs Concurrency off:

- Min: 1 run

- Max: 50 runs

Concurrency on:

- Min: 10 runs plus the number of concurrent runs

- Max: 100 runs

Concurrency off:

- Min: 1 run
(Default)

- Max: 50 runs
(Default)

Concurrency on:

- Min: 10 runs plus the number of concurrent runs

- Max: 200 runs
(Default)

The number of workflow instances that can wait to run when your current workflow instance is already running the maximum concurrent instances.

To change this value in the multi-tenant service, see Change waiting runs limit.

To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

SplitOn items Concurrency off: 100,000 items

Concurrency on: 100 items

Concurrency off: 100,000 items

Concurrency on: 100 items

For triggers that return an array, you can specify an expression that uses a SplitOn property that splits or debatches array items into multiple workflow instances for processing, rather than use a For each loop. This expression references the array to use for creating and running a workflow instance for each array item.

Note: When concurrency is turned on, the SplitOn limit is reduced to 100 items.

Throughput limits

The following table lists the values for a single workflow definition:

Name Multi-tenant Single-tenant Notes
Action - Executions per 5-minute rolling interval Default: 100,000 executions
- High throughput mode: 300,000 executions
None In the multi-tenant service, you can raise the default value to the maximum value for your workflow. For more information, see Run in high throughput mode, which is in preview. Or, you can distribute the workload across more than one workflow as necessary.
Action - Concurrent outbound calls ~2,500 calls None You can reduce the number of concurrent requests or reduce the duration as necessary.
Managed connector throttling Throttling limit varies based on connector Throttling limit varies based on connector For multi-tenant, review each managed connector's technical reference page.

For more information about handling connector throttling, review Handle throttling problems ("429 - Too many requests" errors).
Runtime endpoint - Concurrent inbound calls ~1,000 calls None You can reduce the number of concurrent requests or reduce the duration as necessary.
Runtime endpoint - Read calls per 5 min 60,000 read calls None This limit applies to calls that get the raw inputs and outputs from a workflow's run history. You can distribute the workload across more than one workflow as necessary.
Runtime endpoint - Invoke calls per 5 min 45,000 invoke calls None You can distribute workload across more than one workflow as necessary.
Content throughput per 5 min 6 GB None For example, suppose the backend has 100 workers. Each worker has a limit of 60 MB, which is the result from dividing 6 GB by 100 workers. You can distribute workload across more than one workflow as necessary.

Scale for high throughput

Multitenant Azure Logic Apps has a default limit on the number of actions that run every 5 minutes. To raise the default value to the maximum value, you can enable high throughput mode, which is in preview. Or, distribute the workload across multiple logic apps and workflows, rather than rely on a single logic app and workflow.

Enable high throughput in the portal

  1. In the Azure portal, on your logic app's menu, under Settings, select Workflow settings.

  2. Under Runtime options > High throughput, change the setting to On.

    Screenshot that shows logic app menu in Azure portal with "Workflow settings" and "High throughput" set to "On".

Enable high throughput in a Resource Manager template

To enable this setting in an ARM template for deploying your logic app, in the properties object for your logic app's resource definition, add the runtimeConfiguration object with the operationOptions property set to OptimizedForHighThroughput:

{
   <template-properties>
   "resources": [
      // Start logic app resource definition
      {
         "properties": {
            <logic-app-resource-definition-properties>,
            <logic-app-workflow-definition>,
            <more-logic-app-resource-definition-properties>,
            "runtimeConfiguration": {
               "operationOptions": "OptimizedForHighThroughput"
            }
         },
         "name": "[parameters('LogicAppName')]",
         "type": "Microsoft.Logic/workflows",
         "location": "[parameters('LogicAppLocation')]",
         "tags": {},
         "apiVersion": "2016-06-01",
         "dependsOn": [
         ]
      }
      // End logic app resource definition
   ],
   "outputs": {}
}

For more information about your logic app resource definition, review Overview: Automate deployment for Azure Logic Apps by using Azure Resource Manager templates.

Data gateway limits

Azure Logic Apps supports write operations, including inserts and updates, through the on-premises data gateway. However, these operations have limits on their payload size.

Retry policy limits

The following table lists the retry policy limits for a trigger or action, based on whether you have a Consumption or Standard logic app workflow.

Name Consumption limit Standard limit Notes
Retry attempts - Default: 4 attempts
- Max: 90 attempts
- Default: 4 attempts To change the default limit in Consumption logic app workflows, use the retry policy parameter. To change the default limit in Standard logic app workflows, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.
Retry interval None Default: 7 sec To change the default limit in Consumption logic app workflows, use the retry policy parameter.

To change the default limit in Standard logic app workflows, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Variables action limits

The following table lists the values for a single workflow definition:

Name Multi-tenant Single-tenant Notes
Variables per workflow 250 variables 250 variables
(Default)
Variable - Maximum content size 104,857,600 characters Stateful workflow: 104,857,600 characters
(Default)

Stateless workflow: 1,024 characters
(Default)

To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.
Variable (Array type) - Maximum number of array items 100,000 items 100,000 items
(Default)
To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

HTTP request limits

The following tables list the values for a single inbound or outbound call:

Timeout duration

By default, the HTTP action and APIConnection actions follow the standard asynchronous operation pattern, while the Response action follows the synchronous operation pattern. Some managed connector operations make asynchronous calls or listen for webhook requests, so the timeout for these operations might be longer than the following limits. For more information, review each connector's technical reference page and also the Workflow triggers and actions documentation.

Note

For the Logic App (Standard) resource type in the single-tenant service, stateless workflows can only run synchronously.

Name Multi-tenant Single-tenant Notes
Outbound request 120 sec
(2 min)
235 sec
(3.9 min)
(Default)
Examples of outbound requests include calls made by the HTTP trigger or action.

Tip: For longer running operations, use an asynchronous polling pattern or an "Until" loop. To work around timeout limits when you call another workflow that has a callable endpoint, you can use the built-in Azure Logic Apps action instead, which you can find in the designer's operation picker under Built-in.

To change the default limit in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Inbound request 120 sec
(2 min)
235 sec
(3.9 min)
(Default)
Examples of inbound requests include calls received by the Request trigger, HTTP Webhook trigger, and HTTP Webhook action.

Note: For the original caller to get the response, all steps in the response must finish within the limit unless you call another nested workflow. For more information, see Call, trigger, or nest logic apps.

To change the default limit in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Request trigger and webhook trigger size limits

Name Multi-tenant Single-tenant Notes
Request trigger (inbound) and webhook-based triggers - Content size limit per 5-minute rolling interval per workflow 3,145,728 KB None This limit applies only to the content size for inbound requests received by the Request trigger or any webhook trigger.

For example, suppose the backend has 100 workers. Each worker has a limit of 31,457,280 bytes, which is the result from dividing 3,145,728,000 bytes by 100 workers. To avoid experiencing premature throttling for the Request trigger, use a new HTTP client for each request, which helps evenly distribute the calls across all nodes. For a webhook trigger, you might have to use multiple workflows, which splits the load and avoids throttling.

Messages

Name Chunking enabled Multi-tenant Single-tenant Notes
Content download - Maximum number of requests Yes 1,000 requests 1,000 requests
(Default)
Message size No 100 MB 100 MB To work around this limit, see Handle large messages with chunking. However, some connectors and APIs don't support chunking or even the default limit.

- Connectors such as AS2, X12, and EDIFACT have their own B2B message limits.

- ISE connectors use the ISE limit, not the non-ISE connector limits.

To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Message size per action Yes 1 GB 1,073,741,824 bytes
(1 GB)
(Default)
5 GB This limit applies to actions that either natively support chunking or let you enable chunking in their runtime configuration.

If you're using an ISE, the Azure Logic Apps engine supports this limit, but connectors have their own chunking limits up to the engine limit, for example, see the Azure Blob Storage connector's API reference. For more information about chunking, see Handle large messages with chunking.

To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Content chunk size per action Yes Varies per connector 52,428,800 bytes (52 MB)
(Default)
Varies per connector This limit applies to actions that either natively support chunking or let you enable chunking in their runtime configuration.

To change the default value in the single-tenant service, review Edit host and app settings for logic apps in single-tenant Azure Logic Apps.

Character limits

Name Limit Notes
Expression evaluation limit 131,072 characters The @concat(), @base64(), @string() expressions can't be longer than this limit.
Request URL character limit 16,384 characters

Authentication limits

The following table lists the values for a workflow that starts with a Request trigger and enables Microsoft Entra ID Open Authentication (Microsoft Entra ID OAuth) for authorizing inbound calls to the Request trigger:

Name Limit Notes
Microsoft Entra authorization policies 5 policies
Claims per authorization policy 10 claims
Claim value - Maximum number of characters 150 characters

Switch action limits

The following table lists the values for a single workflow definition:

Name Limit Notes
Maximum number of cases per action 25

Inline Code action limits

The following table lists the values for a single workflow definition:

Name Multi-tenant Single-tenant Notes
Maximum number of code characters 1,024 characters 100,000 characters To use the higher limit, create a Logic App (Standard) resource, which runs in single-tenant Azure Logic Apps, either by using the Azure portal or by using Visual Studio Code and the Azure Logic Apps (Standard) extension.
Maximum duration for running code 5 sec 15 sec To use the higher limit, create a Logic App (Standard) resource, which runs in single-tenant Azure Logic Apps, either by using the Azure portal or by using Visual Studio Code and the Azure Logic Apps (Standard) extension.

Custom connector limits

In multi-tenant Azure Logic Apps, you can create and use custom managed connectors, which are wrappers around an existing REST API or SOAP API. In single-tenant Azure Logic Apps, you can create and use only custom built-in connectors.

The following table lists the values for custom connectors:

Name Multi-tenant Single-tenant Notes
Custom connectors 1,000 per Azure subscription Unlimited
APIs per service SOAP-based: 50 Not applicable
Parameters per API SOAP-based: 50 Not applicable
Requests per minute for a custom connector 500 requests per minute per connection Based on your implementation
Connection timeout 2 min Idle connection:
4 min

Active connection:
10 min

For more information, review the following documentation:

Managed identity limits

Name Limit
Managed identities per logic app resource - Consumption: Either the system-assigned identity or only one user-assigned identity

- Standard: The system-assigned identity and any number of user-assigned identities

Note: By default, a Logic App (Standard) resource has the system-assigned managed identity automatically enabled to authenticate connections at runtime. This identity differs from the authentication credentials or connection string that you use when you create a connection. If you disable this identity, connections won't work at runtime. To view this setting, on your logic app's menu, under Settings, select Identity.
Number of logic apps that have a managed identity in an Azure subscription per region - Consumption: 5,000 logic apps
- Standard: Per Azure App Service limits, if any

Integration account limits

Each Azure subscription has these integration account limits:

  • 1,000 total integration accounts across both Developer and Premium SKUs.

Artifact limits per integration account

The following tables list the values for the number of artifacts limited to each integration account tier. For pricing rates, see Logic Apps pricing. To learn how pricing and billing work for integration accounts, see the Logic Apps pricing model.

Note

Use the Free tier only for exploratory scenarios, not production scenarios. This tier restricts throughput and usage, and has no service-level agreement (SLA).

Artifact Free Basic Standard
EDI trading agreements 10 1 1,000
EDI trading partners 25 2 1,000
Maps 25 500 1,000
Schemas 25 500 1,000
Assemblies 10 25 1,000
Certificates 25 2 1,000
Batch configurations 5 1 50
RosettaNet partner interface process (PIP) 10 1 500

Artifact capacity limits

Artifact Limit Notes
Assembly 8 MB To upload files larger than 2 MB, use an Azure storage account and blob container.
Map (XSLT file) 8 MB To upload files larger than 2 MB, use the Azure Logic Apps REST API - Maps.

Note: The amount of data or records that a map can successfully process is based on the message size and action timeout limits in Azure Logic Apps. For example, if you use an HTTP action, based on HTTP message size and timeout limits, a map can process data up to the HTTP message size limit if the operation completes within the HTTP timeout limit.

Schema 8 MB To upload files larger than 2 MB, use an Azure storage account and blob container.

Throughput limits

Runtime endpoint Basic Standard Notes
Read calls per 5 min 30,000 60,000 This limit applies to calls that get the raw inputs and outputs from a logic app's run history. You can distribute the workload across more than one account as necessary.
Invoke calls per 5 min 30,000 45,000 You can distribute the workload across more than one account as necessary.
Tracking calls per 5 min 30,000 45,000 You can distribute the workload across more than one account as necessary.
Blocking concurrent calls ~1,000 ~1,000 Same for all SKUs. You can reduce the number of concurrent requests or reduce the duration as necessary.

B2B protocol (AS2, X12, EDIFACT) message size

The following table lists the message size limits that apply to B2B protocols:

Name Multi-tenant Single-tenant Notes
AS2 v2 - 100 MB
v1 - 25 MB
Unavailable Applies to decode and encode
X12 50 MB Unavailable Applies to decode and encode
EDIFACT 50 MB Unavailable Applies to decode and encode

Firewall configuration: IP addresses and service tags

If your environment has strict network requirements and uses a firewall that limits traffic to specific IP addresses, your environment or firewall needs to permit incoming communication received by Azure Logic Apps and outgoing communication sent by Azure Logic Apps. To set up this access, you can create Azure Firewall rules for your firewall to allow access for both inbound and outbound IP addresses used by Azure Logic Apps in your logic app's Azure region. All logic apps in the same region use the same IP address ranges.

Note

If you're using Power Automate, some actions, such as HTTP and HTTP + OpenAPI, go directly through the Azure Logic Apps service and come from the IP addresses that are listed here. For more information about the IP addresses used by Power Automate, see Limits and configuration for Power Automate.

For example, suppose your logic apps are deployed in the China East 2 region. To support calls that your logic apps send or receive through built-in triggers and actions, such as the HTTP trigger or action, your firewall needs to allow access for all the Azure Logic Apps service inbound IP addresses and outbound IP addresses that exist in the China East 2 region.

Firewall IP configuration considerations

Before you set up your firewall with IP addresses, review these considerations:

  • For Azure China 21Vianet, fixed or reserved IP addresses are unavailable for custom connectors and for managed connectors, such as Azure Storage, SQL Server, Office 365 Outlook, and so on.

    Note

    Currently, you can't set up firewall security rules for managed connectors and custom connectors in Azure China 21Vianet.

  • To help you simplify any security rules that you want to create, you can optionally use service tags instead, rather than specify IP address prefixes for each region. These tags work across the regions where the Logic Apps service is available:

    • LogicAppsManagement: Represents the inbound IP address prefixes for the Logic Apps service.

    • LogicApps: Represents the outbound IP address prefixes for the Logic Apps service.

  • If your logic apps have problems accessing Azure storage accounts that use firewalls and firewall rules, you have various other options to enable access.

    For example, logic apps can't directly access storage accounts that use firewall rules and exist in the same region. To access your Table Storage or Queue Storage, you can use the HTTP trigger and actions instead. For other options, see Access storage accounts behind firewalls.

Inbound IP addresses

This section lists the inbound IP addresses for the Azure Logic Apps service in Azure China 21Vianet.

Tip

To help reduce complexity when you create security rules, you can optionally use the service tag, LogicAppsManagement, rather than specify inbound Logic Apps IP address prefixes for each region. These tags work across the regions where the Azure Logic Apps service is available.

The following connectors make inbound webhook callbacks to the Azure Logic Apps service:

Adobe Creative Cloud, Adobe Sign, Adobe Sign Demo, Adobe Sign Preview, Adobe Sign Stage, Azure Sentinel, Business Central, Calendly, Common Data Service, DocuSign, DocuSign Demo, Dynamics 365 for Fin & Ops, LiveChat, Office 365 Outlook, Outlook.com, Parserr, SAP*, Shifts for Microsoft Teams, Teamwork Projects, Typeform

* SAP: The return caller depends on whether the deployment environment is either multi-tenant Azure or ISE. In the multi-tenant environment, the on-premises data gateway makes the call back to the Azure Logic Apps service. In an ISE, the SAP connector makes the call back to the Azure Logic Apps service.

Note

For the latest service tag information, you can download and check Azure IP Ranges and Service Tags China Cloud.

Multi-tenant - Inbound IP addresses

Azure China Cloud region IP
China East 139.219.235.237, 42.159.193.38, 42.159.192.121
China East 2 139.217.224.152, 40.73.245.4, 139.217.224.69, 139.217.226.111, 52.130.67.208, 40.73.71.31, 52.131.241.43, 52.131.243.142
China East 3 163.228.66.178, 163.228.67.83
China North 139.219.109.245, 139.219.111.85, 40.125.171.245
China North 2 40.73.33.166, 40.73.33.122, 40.73.37.11, 40.73.32.124, 52.130.155.36, 52.130.155.90, 40.73.36.163, 40.73.39.195
China North 3 159.27.4.236, 159.27.25.161

Outbound IP addresses

This section lists the outbound IP addresses for the Azure Logic Apps service in Azure China 21Vianet.

Tip

To help reduce complexity when you create security rules, you can optionally use the service tag, LogicApps, rather than specify outbound Logic Apps IP address prefixes for each region. These tags work across the regions where the Azure Logic Apps service is available.

Note

For the latest service tag information, you can download and check Azure IP Ranges and Service Tags China Cloud.

Multi-tenant - Outbound IP addresses

Azure China Cloud region Logic Apps IP
China East 139.219.185.172, 42.159.197.40, 42.159.196.202
China East 2 40.73.245.106, 40.73.245.189, 40.73.245.160, 40.73.245.228, 40.73.246.9, 139.217.224.20, 139.217.225.145, 40.73.246.115, 139.217.237.127, 40.72.105.235, 40.73.117.207, 139.217.217.17, 52.131.241.28, 52.131.240.224, 52.131.243.97, 52.131.242.248
China East 3 163.228.66.175, 163.228.67.29, 163.228.67.80, 163.228.66.154
China North 40.125.168.87, 40.125.208.107, 139.219.109.179
China North 2 40.73.36.99, 40.73.37.76, 40.73.1.190, 40.73.5.24, 139.217.99.144, 139.217.102.119, 139.217.103.121, 139.217.114.65, 52.130.154.185, 52.130.154.14, 52.130.155.76, 52.130.155.75, 40.73.36.125, 40.73.35.208, 40.73.35.239, 40.73.35.32
China North 3 159.27.4.202, 159.27.2.137, 159.27.24.136, 159.27.24.31

Next steps