Closed fredkelly closed 8 years ago
A simplest way to handle it is you change it to be ",", then handle it in your application code.
Hey Xiao, thanks for the response, I ended up opting for a similar solution. It's a shame this can't be supported in the way I describe, but I guess that's more a limitation of the eb
tool than anything else.
It's either EB aws-sdk bug, or more likely is EB server side bug.
@fredkelly eb_deployer will just simply pass through any value you provide to ElasticBeanstalk api. Seems like ElasticBeanstalk service internally treats any multiple line value as a collection value. You may contact with AWS support for this.
Firstly, this is a great tool, thank you for creating it!
I'm finding a little niggle trying to set an environment variable that is read from a file (i.e. containing newline characters).
I have something like this (see YAML doc):
If I load this through IRB, all is fine:
When I come to run a deployment using the gem, I get an error:
Is there a way I can include file values in
ENV
that contain newlines without error?Much appreciated!