Browse Source

Set better env variables for development

Hamilton Turner 11 years ago
parent
commit
edae48b03d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      deployment/vagrant-development/Vagrantfile

+ 4 - 0
deployment/vagrant-development/Vagrantfile

@@ -14,6 +14,10 @@ Vagrant.configure("2") do |config|
       file.destination = "~/.custom_motd.sh"
       file.destination = "~/.custom_motd.sh"
   end
   end
   
   
+  # Set AWS variables to be more appropriate for a development machine
+  ENV['TFB_AWS_EBS_TYPE'] = ENV.fetch('TFB_AWS_EBS_TYPE', 'standard')
+  ENV['TFB_AWS_EC2_TYPE'] = ENV.fetch('TFB_AWS_EC2_TYPE', 'm1.small')
+
   provision_bootstrap(config, 'all')
   provision_bootstrap(config, 'all')
 
 
   provider_virtualbox(config, 'all')
   provider_virtualbox(config, 'all')