home.social

#elasticbeanstalk — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #elasticbeanstalk, aggregated by home.social.

fetched live
  1. Yes! Elastic Beanstalk finally supports Ruby 3.3. Yet another day I can procrastinate on migrating to a Docker workflow for this collection of apps. 😅

    #Ruby #AWS #ElasticBeanstalk

  2. I tried manually deleting the IPs, which works, as long as you don't want to change anything ever again. It seems like #ElasticBeanstalk stores the IP address internally somewhere, so when you try to deploy new versions of the app or make any config changes, it just errs out complaining that it can't find the old IP address. I think it tries to move the IP address across instances and then fails when it can’t.

  3. Well this is infuriating 😡, apparently #ElasticBeanstalk Single-Instance Envs are forced to have an Elastic IP even if they are in a private subnet (which means the assigned public ip is useless).

    In February, #AWS is going to start charing for ALL EIPs, not just unassigned ones, so unless they update Elastic Beanstalk before then to no longer require the EIPs, it’s just more money out the window.

  4. Success! I wonder if I'm the first person to get a #Ruby 3.2 app running on #ElasticBeanstalk Amazon Linux 2023? Surely not, right?

    The biggest difference for me was that AL2023 seems to no longer user rbenv for Ruby, the platform just has it installed. I had modify my platform hook that copies the Amazon .rbenv version into my app’s root dir to only do it if the file exists (so I could get that app version deployed on a Ruby 3.0 instance before doing the instance upgrade)

    #AL2023 #RubyOnRails

  5. Is anyone deploying #Ruby 3.1 or 3.2 apps to #AWS #ElasticBeanstalk? There seems to be no official platform support yet, and I’m not hopeful that it’s coming soon.

    github.com/aws/elastic-beansta

    So what’s the best way to do this now? Is docker the only way to use these latest Ruby versions, and if so, does it make more sense to use ECS instead of Elastic Beanstalk?