James Brennan
James Brennan
Yes - I think additional formatters would need to be provided as a lein plugin, unless there is another way to have the code loaded at the correct time. I'll...
I ran into this, and the fix in #103 isn't sufficient to resolve the issue because role paths are not included in `assumed-role` ARNs. I created #144 which implements @nckturner's...
It looks like there are other inconstancies around `nil` values (line 6 and 7): ``` irb(main):001:0> require 'deep_merge' => true irb(main):002:0> {key: 'left'}.merge(key: 'right') => {:key=>"right"} irb(main):003:0> {key: 'left'}.deep_merge(key: 'right')...
@eush77 what is the stats of this? I'm interested in using `-` to denote "read from stdin"
`CommandsBefore` would certainly work as a workaround for now, something like: ``` Template: remote-template.yaml CommandsBefore: - aws s3 cp local-template.yaml s3://bucket-name/remote-template.yaml ``` I agree that handling this transparently with something...
`params` isn't a special identifier - it could be called anything: ``` $imports: cats: ssm-path:/cats/ dogs: ssm-path:/dogs/ ... Parameters: ImageId: !$ cats.ImageId ``` ``` iidy param set stack-args.yaml cats.ImageId ami-000000...
It seems to me that the main use-case of using parameter store here is to store things that are secret - if they were not secret then the codebase seems...
@jonlives no, I haven't taken a look yet
There appear to be a couple more things that need to be done to account for multiple runners on the same host concurrently: 1. `docker network prune` can not run...
@TingluoHuang @bryanmacfarlane I'm hoping to get your feedback on this – getting official support for this would be a huge help for me. I'm happy to work on an implementation...