My requirement is that I need to write a AWS Lambda function that needs to do some processing and then invoke a URL. These URLs would very from stack to stack.
So in stack 1 Lambda the URL can be http://do-something.com and in stack 2 the URL can be http://do-nothing.com
I would have my Lambda jar built out of Jenkins, so I cannot put those details within the Lambda Jar as well
My question is what are the ways of configuring such things in Lambda. One approach that I could think of is that put that URL in a file in a standard bucket and Lambda would read that everytime it is invoked. Seems to be non-efficient because it has to read that everytime.
Any other suggestions or recommended good practices.