Daniel Simmons

Results 31 comments of Daniel Simmons

I just whipped up a slightly different approach to running tests in parallel: https://gist.github.com/dansimau/128826e692d7834eb594bb7fd41d2926 Similar to #369, it introduces a `RunParallel`, except that it uses reflection to create a new...

Nice! We already have some pretty print code in there but it's a broken in some cases (#5). Perhaps we can just ditch that code and use scenery instead.

I am all for this. I'm even thinking of a generalised approach, i.e.: within each `terraform` block, have a way to specify arbitrary arguments to each Terraform command: E.g.: ```...

I hear you. I'll work on a basic example and get something up this week.

You can view the logs of all previous commands that were run by manually looking in the .astro directory: ``` .astro///logs/ ``` There should be a log file in there...

Symlinks are required for this to work; I haven't tested this on Windows at all. Though I understand symlinks do exist in NTFS so in theory this could work. Virtualbox...

I have no problem adding destroy. It's just not there because it's not part our workflow. I don't think it would be very difficult to add. It's similar to apply,...

Astro doesn't have specific support for workspaces. Though, you could possibly run a [hook](https://github.com/uber/astro/blob/eef5b8a484eb7dcd8cd5f706cb6b77ff02422975/astro/conf/hooks.go#L54) to do it. What workflow are you looking to support?

OK cool, I see. In that regard, workspaces act a bit like the variables, it's just that they need a special step. Do you know of any way to switch...

Sorry for the delayed response. I don't think this will work currently. If I was going to implement it, my first thought would be to represent lists using `[]` brackets,...