C_CPE_2409 · Question #27
You need to secure your application in the Cloud Foundry environment.In which file do you maintain routes during design time?
The correct answer is B. manifest. yml. manifest.yml is the Cloud Foundry deployment descriptor where you define application routes at design time - it maps your app to specific URLs (e.g., routes: - route: myapp.cfapps.io) before the app is pushed to the platform. Why the distractors are wrong: A. mta.yml - the…
Question
You need to secure your application in the Cloud Foundry environment.In which file do you maintain routes during design time?
Options
- Amta.yml
- Bmanifest. yml
- Cxs-securityjson
- Dxs-app.json
How the community answered
(46 responses)- A2% (1)
- B89% (41)
- C7% (3)
- D2% (1)
Explanation
manifest.yml is the Cloud Foundry deployment descriptor where you define application routes at design time - it maps your app to specific URLs (e.g., routes: - route: myapp.cfapps.io) before the app is pushed to the platform.
Why the distractors are wrong:
- A. mta.yml - the Multi-Target Application descriptor handles module dependencies and deployment parameters across MTA components, not route configuration directly.
- C. xs-security.json - defines OAuth scopes, role templates, and authorization settings for the XSUAA service; it's about who can access the app, not where it's reachable.
- D. xs-app.json - used by the AppRouter to define backend routing rules at runtime (which microservice handles which URL pattern), not the public-facing CF route registered at design time.
Memory tip: Think of manifest.yml as your app's "address label" - you write it before shipping (design time) so Cloud Foundry knows where to deliver traffic. The others handle security rules (xs-security.json), internal traffic routing (xs-app.json), or multi-module orchestration (mta.yml).
Topics
Community Discussion
No community discussion yet for this question.