Question 425:
Your team is using AWS Elastic Beanstalk for web applications in a production environment. The project needs to read/write to a PostgreSQL RDS database in another production environment as well. Apart from this, the AWS Elastic Beanstalk also uses Immutable deployment and entirely new instances need to be created for new deployments. Among the options provided which one do you suggest to connect to RDS database for this Elastic Beanstalk environment?
Answer options:
A.For the Elastic Beanstalk, it is not possible to connect to a RDS instance if it is for production environment. B.You could add this RDS database to Elastic Beanstalk using the database configuration card in the console. Type in the correct username, password, instance class and other information. C.You could not add this RDS database to Elastic Beanstalk as Elastic Beanstalk does not support PostgreSQL. D.Since it is for the production environment, it is suggested to put the RDS database outside of the AWS Elastic Beanstalk deployment. This can be done by using your web application to connect to it on launch.