A developer is preparing a source bundle to deploy a web application to AWS Elastic Beanstalk. The developer wants to include configuration files that install additional software packages and define system environment variables. In which directory must these configuration files be placed to ensure Elastic Beanstalk processes them during deployment?
- AA folder named ebextensions without a leading dot at the root level of the application source bundle
- BA folder named .elasticbeanstalk at the root level of the application source bundle
- A folder named .ebextensions at the root level of the application source bundleCevap
- DA folder named .ebextensions nested inside the primary source code directory, such as src/
Cevap
A folder named .ebextensions at the root level of the application source bundle
The correct answer specifies placing files in a directory named .ebextensions at the root level of the application source bundle. AWS Elastic Beanstalk automatically looks for configuration files with a .config extension inside this directory during deployment to customize the environment's resource configuration.
Adım Adım Çözüm
Anahtar Kavram
AWS Elastic Beanstalk Custom Configurations (.ebextensions)