figaro icon indicating copy to clipboard operation
figaro copied to clipboard

Elastic Beanstalk Support

Open fny opened this issue 9 years ago • 4 comments

The commands are very similar to those for Heroku:

eb setenv RACK_ENV=development

I might need this for a project, so I'll be willing to take a stab at it.

fny avatar May 08 '15 01:05 fny

Thoughts on the best way to extract these parts for reuse? I'm thinking a mixin might do.

def vars
  configuration.keys.map { |k| var(k) }.join(" ")
end

def var(key)
  Gem.win_platform? ? %(#{key}="%#{key}%") : %(#{key}="$#{key}")
end

fny avatar May 08 '15 02:05 fny

Hi, has anyone worked on this feature? Would be very handy.

guirl avatar Oct 02 '15 19:10 guirl

+1

TSMMark avatar Jan 25 '16 15:01 TSMMark

I'd like to notice that EB allows to set up only 4096 symbols of all environment vars

BEaStia avatar Aug 22 '17 09:08 BEaStia