MCQ Single Best Answer Easy

QEnvironment configuration details can be integrated during build time.

ID: #23980 Continuous Deployment 84 views
Question Info
#23980Q ID
EasyDifficulty
Continuous DeploymentTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A True
  • B False
Correct Answer: Option A

Explanation

True

Explanation:

Environment configuration details can be integrated during build time, but it is generally not recommended for best practices.

At build time, configurations (such as database connections, API keys, or feature flags) can be baked into the build artifacts, but this approach has limitations:

  • Requires a separate build for each environment (e.g., Dev, QA, Prod).
  • Reduces flexibility in deploying the same artifact across multiple environments.
  • Can expose sensitive information if not handled securely.

Best Practice:

Instead of integrating configurations at build time, it's better to:

  • Use external configuration files or environment variables.
  • Store secrets securely in vaults (e.g., Azure Key Vault, AWS Secrets Manager).
  • Keep builds environment-agnostic to support Continuous Deployment (CD).

Thus, while True, it's not the best practice for modern DevOps workflows. ✅

Share This Question

Challenge a friend or share with your study group.