Does anyone know if it's possible to make my own AMI's for use in the AWS Elastic Beanstalk? The AMI would simply have a C program that executes when the instance starts.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Yes, it is possible. Simply spin an EC2 instance up based on their stock beanstalk AMIs, which I believe Amazon makes available in the community AMI list, make your changes, cut an AMI off that fixed instance, and use that newest AMI id in your beanstalk application's configuration. There is nothing abnormal or unusual about this. Alternatively, you can use UserData and CloudInit to download and launch the application on instantiation. This would avoid having to change the stock AMI. |
||||
|
|