
Announcements
Right now I am trying to build a custom form for my developers.
My challenge right now is getting it todo the following:
I want Form Drop down to show my Azure Resources.
AzureResourceManager.ResourceGroups_List()
This call above doesn't seem to be working.
Then I would like to have a drop down of all my resource groups.
Then I would like the developers to be able to list Azure new services that they can create.
Please let me know any guides on how to complete this.
Hi @PedroNL ,
Could you please tell me that how you write your formula?
To get your Azure resources, you should invoke the List Subscriptions action to get all subscriptions the current logged in user can access.
AzureResourceManager.SubscriptionsList().value
Then you could list all resource groups from the subscription selected in the previous dropdown control, here is the formula used on the Items property of this dropdown control is:
AzureResourceManager.ResourceGroupsList(ComboBox1.Selected.subscriptionId).value
More details, you could check the following blog for reference:
Manage Azure Virtual Machines with Power Apps and Azure Resource Manager (bythedevs.com)