Unable to create Azure Integration Account

Mathias Aronsson 0 Reputation points
2025-12-16T09:13:07.4466667+00:00

I cannot create a Azure Integration Account. I get a very technical error message in the last validation step in the creation form. I have tried for weeks with different Subscriptions and Regions.

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
{count} votes

2 answers

Sort by: Most helpful
  1. Q&A Assist
    2025-12-16T09:13:20.11+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    If you are unable to create an Azure Integration Account and are encountering a technical error during the validation step, there are a few common issues to consider:

    1. Subscription and Region Compatibility: Ensure that both your integration account and logic app are in the same Azure subscription and region. This is a requirement for them to work together effectively.
    2. Resource Group: Verify that the resource group you are using is correctly set up and that you have the necessary permissions to create resources within it.
    3. Pricing Tier: Make sure you are selecting an appropriate pricing tier for your integration account. The Free tier has limitations and may not be suitable for all scenarios.
    4. Quota Limits: Check if you have reached any subscription limits or quotas that might prevent the creation of new resources. Azure subscriptions have limits on the number of resources you can create.
    5. Technical Error Message: If the error message is specific, it may provide clues about what is wrong. Look for keywords in the error message that might indicate the nature of the problem.

    If you continue to face issues, consider reaching out to Azure support for more detailed assistance.


    References:


  2. Rakesh Mishra 4,030 Reputation points Microsoft External Staff Moderator
    2025-12-16T16:37:00.77+00:00

    Hi @Mathias Aronsson , I was also facing the same issue. Could you please try below steps.

    • Navigate to Resource Group, Click on +Create.
    • This will open Azure Marketplace, search for Integration account. Click on Create.
    • This will take to the same form to enter Resource Group, Name and Pricing tier.
    • Enter details and then Click on Review + Create.
    • Validation should be successful now.

    User's image

    User's image

    If still facing issue, try creating by using Az CLI command. I was able to provision using below command also.

    # create a Standard integration account
    az logic integration-account create \
      --name myIntegrationAccount \
      --resource-group myResourceGroup \
      --location eastus \
      --sku Standard
    
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.