Last active
April 3, 2019 09:59
-
-
Save iamtankist/739390fd0cb94ce769979852e5adb121 to your computer and use it in GitHub Desktop.
vagrant box with pre-installed aws cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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