QuestionQ2

Application Deployment and Security

Applications may sometimes keep configuration as code constants, violating the strict separation of configuration from code.

Where should application configuration be stored?

  • A environment variables
  • B YAML files
  • C Python libraries
  • D Dockerfiles
  • E INI files
Explanation

Application configuration should be stored in environment variables so deployment-specific settings remain separate from the application codebase.

Community Discussion

No comments yet. Be the first to start the discussion!