terraform
terraform copied to clipboard
Set up a cold, inhospitable system using Terraform.
When you run the code it will complain that set Is missing, this change fixes that.
I burned through previous versions on our local gem server so I need to jump to 0.0.9.
`ensure_packages` should run `apt-get update` once, the first time it is used. This is because if the system hasn't been updated for a while, there could be server changes that...
Right now there's Lucid-specific stuff in Terraform. We should figure out what we're running on and then have a mechanism for doing different things depending on what Ubuntu it is....
In the Barkeep deploy, we use `ensure_gem("terraform")` before running `bundle install`. This breaks every time the version of Terraform bumps, because the version of terraform loaded won't match the version...
This is not really a bug, but more of a convention that we should figure out for posterity. I just ran into this problem with Barkeep. The issue occurs when...
Here's a snippet from a Terraform config I just wrote: ``` ruby ensure_run_once("nginx directories have correct permissions") do shell "sudo chgrp admin -R /etc/nginx/sites-available", :silent => true shell "sudo chmod...