Hello @Müller, André ,
If I understand correctly from the question, you need to find the VM where self-hosted integration runtime was installed, and you know the public IP associated with this VM.
- If public IP value/name is known, you can do a search on Azure portal for the particular IP value/name as shown below (Please make sure you have selected the correct subscription in the portal)
When you get the public IP resource, you can get the associated NIC with the IP on the overview page as shown below.
When you click on the NIC above, on its overview page you will see the associated VM.
- If method above is not preferrable you can run below PowerShell commands to find the VM.
Get-AzPublicIpAddress -Name <PublicIPName>
In the IP configuration section you will get the information on your NIC, using which you can run the below command to get information on VM associate with the NIC.
Get-AzNetworkInterface -Name <NICName> -ResourceGroupName <RGName>
If you do not have PowerShell set-up on your local machine, you can use Azure cloudshell to run these commands.
Hope this helps! Please let me know if you have any additional questions. Thank you!