A developer is packaging a web application to be deployed on AWS Elastic Beanstalk. The application requires custom environment configurations and package installations during deployment. To achieve this, which directory at the root of the application source bundle must contain the custom configuration files?
- .ebextensionsCevap
- Bebextensions
- C.elasticbeanstalk
- D.extensions
Cevap
The directory named '.ebextensions' must be placed at the root of the application source bundle to store Elastic Beanstalk configuration files.
The correct option is '.ebextensions'. AWS Elastic Beanstalk searches for configuration files (which must end in '.config') in a directory named '.ebextensions' located at the root of the application source bundle. This allows developers to configure environment options, install packages, and create files on the EC2 instances.
Adım Adım Çözüm
Anahtar Kavram
AWS Elastic Beanstalk configuration files must be stored in the '.ebextensions' folder at the root of the application source bundle.