Skip to content

Instantly share code, notes, and snippets.

@iamtankist
Last active April 3, 2019 09:59
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save iamtankist/739390fd0cb94ce769979852e5adb121 to your computer and use it in GitHub Desktop.
vagrant box with pre-installed aws cli
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provision :shell, :inline => <<SCRIPT
apt-get update
curl -s -O https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py && rm get-pip.py
pip3 install awscli --upgrade
aws --version
SCRIPT
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment