Hi gurus;
Is there a ip range of the personal cloud that we could use to set on a allow list on our VPS to make the connection more secure? I can understand that the ranges some times will change but probably that will not be on a daily.
Hi freek,
I don't think this feature is available on the personal environment.
The proposed way to whitelist the IPs suggests resolving the front-end server IPs, but they are not visible available on the Environment Health in the Personal environment (screenshot of the Environment Health in my personal environment):
Ultimately, you can open a support case with OutSystems but I don't think it is available in a PE.
Kind Regards,João
I was having the same problem.
I finally found a way to find which ip my personal environment is using but it took me a while.
In my case an external database (SQL Server) is hosted in a server with a firewall only allowing the allowlist ips. I turned off the firewall, used my outsystems app and then on SQL Server I queried the client's data.
SELECT client_net_address FROM sys.dm_exec_connections WHERE Session_id = <id>
The <id> you can get from the activity monitor.
I know this is a very specific case, but I hope to help if not you, somebody else (like me in the past day).