[DL.EAC.4] Implement continuous configuration for enhanced application management
Category: RECOMMENDED
          Configuration as code is the practice of managing and tracking
          configuration changes as code, providing an audit trail and reducing errors from manual
            changes. Continuous configuration
 Configuration should be separated from application code to allow for independent
          tracking and management. Use tools designed for managing configurations as code, such
            as AWS
            AppConfig
 It's important to distinguish between static and dynamic configuration types. Static
          configurations do not change during the software's runtime and are specific to each
          environment. Dynamic configurations can be adjusted at runtime without downtime. Feature
            flags
General use cases for continuous configuration include application integration tuning, feature toggling, allowing access to premium content through allow lists, and addressing operational issues and troubleshooting. To manage your configurations effectively, establish a routine to prevent configuration bloat. While it can seem tempting to externalize as many variables as possible, an excessively complex configuration file can lead to confusion and errors. Carefully evaluate the necessity, frequency of change, and runtime requirements of each value to decide if it should be included as dynamic configuration.
 For large-scale deployment of configuration as code, a Dynamic Configuration Pipeline
Continuous configuration is beneficial in DevOps environments, as it improves operational efficiency and scalability. However, not every system requires the complexity associated with continuous configuration. Therefore, each workload should be evaluated depending on architecture choice, team preferences, and service level objective requirements.
Related information: