Sha256: b9ba2f7b9754e3a6538edaa0c626bf895c00c837bb1df5719a76602498f7b638
Contents?: true
Size: 531 Bytes
Versions: 15
Compression:
Stored size: 531 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure(2) do |config| config.vm.box = "ubuntu/vivid64" config.vm.provision "shell", inline: <<-SHELL apt-get -y update apt-get -y install git bundler ruby graphviz SHELL config.vm.provision "shell", privileged: false, inline: <<-SHELL git clone https://github.com/anaynayak/aws-security-viz.git cd aws-security-viz bundle install # bundle exec ruby lib/visualize_aws.rb -a your_aws_key -s your_aws_secret_key -f viz.svg --color=true SHELL end
Version data entries
15 entries across 15 versions & 1 rubygems