I have a use-case that requires my lambda to send outbound requests to a third-party (i.e. the lambda needs/has internet access). However, for each of those outbound requests I need my lambda function to have a different IP.
As an example:
lambda [192.168.1.2] -- outbound request --> example.com
lambda [192.168.1.3] -- outbound request --> example.com
lambda [192.168.1.4] -- outbound request --> example.com
lambda [192.168.1.5] -- outbound request --> example.com
lambda [192.168.1.6] -- outbound request --> example.com
Is this possible?