Forum Discussion

KjoniX's avatar
KjoniX
Copper Contributor
Jun 04, 2024

Azure Automation Managed Integration - No Enterprise App created

I have created an Azure Automation and configured system assigned managed identity.

 

To manage permissions etc I thought, based on what I read

, from others that I will get an Enterprise App application, but can't find it.

1 Reply

  • Please check by below:

     

    • Check Application Registration: Ensure that the application registration is properly set up in Azure Active Directory (AAD). When you create an app registration, it should automatically create an Application Object and a corresponding Service Principal Object.
    • Verify Enterprise Application: Go to the Enterprise Applications blade in AAD and check if the Service Principal Object for your Azure Automation account is listed there. If it's not, you might need to manually create the Enterprise Application.
    • Permissions and Roles: Ensure that the necessary permissions and roles are assigned to the Service Principal Object. Sometimes, the lack of appropriate permissions can prevent the Enterprise Application from being created automatically.
    • Manual Creation: If the Enterprise Application is still not appearing, you can manually create it in the Enterprise Applications blade. This involves selecting "New application" and configuring it with the necessary details.
    • Azure CLI or PowerShell: You can use Azure CLI or PowerShell to check the status and create the Enterprise Application if needed:
    az ad app create --display-name "YourAppName" --reply-urls "https://yourapp.com/callback"
    

     

Resources