I created a stack of lambda functions and I use the ide pycharm to test them on my localhost. In the requirements.txt file I added a reference to a private repository on github.
The repository works and I was able to install it through the requirements.txt of other projects.
But when I start the local test, using aws sam cli, sam buil fails, because the container does not have the ssh key to access the repository.
Is there any way to customize the sam build process and give it my ssh key to the container access my private repo and install the package?
Or any another solution?