Which application specification file properties are required to ensure the software deployments do not fail?
(Choose two.)
The file must be a JSON-formatted file named appspec.json.
The file must be a YAML-formatted file named appspec.yml.
The file must be stored in AWS CodeBuild and referenced from the application’s source code.
The file must be placed in the root of the directory structure of the application’s source code.
The file must be stored in Amazon S3 and referenced from the application’s source code.
Explanations:
The file must be a YAML-formatted file, not JSON.
The application specification file must be a YAML-formatted file namedappspec.yml.
The file is not required to be stored in AWS CodeBuild; it should be part of the source code repository.
Theappspec.ymlfile must be placed in the root directory of the source code structure.
The file does not need to be stored in Amazon S3; it should be part of the application’s source code repository.