Going by a recent tutorial on setting up AWS Elastic Beanstalk for Ruby deployment using Git, I just set up a Elastic Beanstalk environment from my CI server. However, the application failed to start. I went through the logs to find that bundle install
was failing with an error message.
Fetching git@github.com:example/private-repository.git Host key verification failed. fatal: The remote end hung up unexpectedly [31mGit error: command
git clone 'git@github.com:example/private-repository.git' "/var/app/ondeck/vendor/cache/ruby/1.9.1/cache/bundler/git/private-repository-e4bbe6c2b13bb62664e39e345c1b01d80017934c" --bare --no-hardlinks
in directory /var/app/ondeck has failed.[0m
Gemfile
of my Rails application contains references to gemified plugins hosted on a couple of my owned private repositories on Github. Something like
gem 'somegemname', :git => 'git@github.com:example/private-repository.git'
I had faced similar issues with Capistrano deployments which were resolved by setting up ssh_options[:forward_agent] = true
.
AWS Elastic Beanstalk Ruby container supports custom configuration through custom .config
files placed under .ebextensions
. Would setting up an SSH forward agent help in this case? Are there any other alternatives to reach a private Github repository while starting an Elastic Beanstalk environment?
Update 1:
I just checked for the user with which a bundle install
is initiated. Found out that a script /opt/elasticbeanstalk/hooks/appdeploy/pre/10_bundle_install.sh
starts bundle install
as root
user. I tried creating an SSH Key under /root/.ssh
and added it's pub-key to Github Deploy keys for that repository. No luck so far. Will now try to add an SSH pub-key to my user account on Github so that it applies to all private repositories accessible through my Github account.
Remove the private github repos from your requirements.txt file and create a script to install them using environmental variables for usernames and passwords.
file: project-root/install-extra-requirements.sh
file: project-root/.extra-requirements.py
file: project-root/.ebextensions/002_container.config
Now you can just set GITHUB_USERNAME and GITHUB_PASSWORD as environmental variables in your elastic beanstalk environment.
After a good day of effort, I finally enabled use of my organization's private GitHub repos with Elastic Beanstalk by just using a
.config
file. I am using Python andpip
, but it should also work for other package installers on EB.rhetonik's
ssh-agent
+ssh-add
approach did not work for me at all, so I elected to set up an ssh configuration file instead.Here is my
.ebextensions/3-pip-install-from-github.config
file:Rough instructions:
Set up an S3 bucket accessible by your EB instance. Inside of that bucket, store the SSH key allowing access to the GitHub repository you want to access via
pip
,npm
,bundle
, etc. Usesudo aws s3 cp
to copy that key onto your EB instance on deploy.sudo
is necessary because EB scripts useroot
and notec2-user
.This ebextensions config file also creates 2 files on your EB instance.
/root/.ssh/config
tellsssh
(invoked bypip
andgit
) to use the key you copied from S3. Pasting the output ofssh-keyscan -H github.com
into/root/.ssh/known_hosts
will pre-verify thatssh
on your EB instance is actually communicating with GitHub to avoid MITM attacks. This is better than disablingStrictHostKeyChecking
in/root/.ssh/config
.Here is my
requirements.txt
file forpip
:While running
eb-deploy
, you cantail -f /var/log/eb-activity.log
to make sure everything runs smoothly.There are two approaches to authenticating with GitHub. I recommend associating your personal GitHub account with the private GitHub repo in either case.
The first approach passes the same ssh credentials you use locally to push, pull, and so on from the remote GitHub repo -- you uploaded your public key for your personal account, and that's what GitHub uses. To make this work when running on another server, you need to have
ssh-agent
running and usessh-add
to add your key to the agent -- then your personal GitHub credentials can be used to perform git commands.The second approach is to allow the remote server(s) you're deploying to to have access to GitHub -- this may be elastic beanstalk or your actual server(s). Create a passwordless ssh key on the server (
ssh-keygen -t rsa
, accept defaults, or perhaps EB has a way of its own) then copy the generated public key contents and create a new "deploy key" containing that key in your GitHub repo -- you'll need to be admin, which I assume you are. An installed deploy key will allow the EB users to log into the remote server and dogit pull
and related commands (read-only) from the server.I think the first method is more elegant and more easily managed as the number of servers you're deploying to grows, but which method you use may depend on EB's options.
Here's how I finally did it. It's all about setting up an SSH Key for the user which is responsible for
bundle install
phase.root
userEdit
.bash_profile
to explicitly startssh-agent
and add the newly generated SSH Key. Add the following lines (This might seem unnecessary, I did it just to be sure)Note the SSH public key E.g.:
~/.ssh/id_rsa.pub
and add it to the set of SSH Keys for Github account which has access to private repositoriesAt this point, your instance has access to your private Github repositories. You could test this by issuing a
git clone
on those repositories by logging in asroot
user.Create an AMI out of this instance using standard methods
Come back to your AWS Elastic Beanstalk Dashboard and look for
Edit Configuration
option in your application's environment. In theServer
tab, look for an option which lets you specify aCustom AMI
. Update this field with the newly created AMI ID E.g.:ami-4324fd4
.Save configuration by hitting
Apply Changes
. AWS Elastic Beanstalk would start deploying new instances across your environment and terminating the old ones. This is to ensure all your auto-scaled instances have the whitelisted SSH Key required for private Github access.After the above steps are done, you could go ahead and deploy your Rails application with
git aws.push
Hope this helps others who are stuck. I'd be glad to see a more graceful solution than this one though.
If you're in a hurry, and your application repo is also private, you can create an additional Github user account and assign it read-only privileges to the repo containing the gem.
Then give bundler the https url with the new account's credentials: