Question 450:
You are a software developer and working on a Node.js web application. The app is ready to be deployed for further testing. You want to deploy it with AWS Elastic Beanstalk, and the application should be put in a custom VPC. You plan to specify the VPC settings in a .ebextensions configuration file. Which description is correct?
Answer options:
A.Define the VPC settings in the Resources section of the .ebextensions configuration files. B.Define the VPC configurations in the aws:ec2:vpc namespace such as: - namespace: aws:ec2:vpc option_name: VPCId value: vpc-170647c C.Create a saved configuration that contains the VPC settings and apply it using EB CLI. D.Configure the VPC in the option_settings namespace such as: - namespace: option_settings option_name: VPCId value: vpc-170647c