Skip to main content
  1. Projects/
  2. AWS DevOps Pro Certification/
  3. 2: Configuration Mgmt / Infrastructure as Code/
  4. 3: Containers and More/

4: AWS AppConfig

·1 min

What’s AppConfig?

  • It’s part of Systems Manager
  • Create, manage, quickly deploy app configs (duh)

Let’s say you’re developing an e-commerce web application that has a feature for promotional discounts. Every so often, you change these promotional discounts based on various factors like holidays, inventory, season, etc. These changes affect how your application behaves, and traditionally, to make these changes, you might have to make a code change and redeploy your application, which can be risky and time-consuming.

Instead, you could use AWS AppConfig to manage the promotional discounts as a configuration outside of your application code. This configuration could include variables like discount_rate, start_date, end_date, items_on_sale, etc.

How is it different from CodeDeploy?

  • CodeDeploy rolls out new versions of existing apps
  • AppConfig applies config changes to running apps
  • Sort of circumvents SDLC pipeline

Why use it?

  • Reduce errors in app configs
  • Update apps without interruption
  • Control deployment of changes across apps
  • Deploy changes across a range of targets
    • Containers
    • Lambda
    • Ec2

Use Cases?

  • Introduce changes to apps and test with prod traffic
  • Turn on new features during product launch or announcement
  • Allow premium subscribers to access paid content
  • Reduce stress on apps when a dependency impacts the system