AWS CDK 100 Drill Exercises #005: CDK Parameters โ€”โ€” Managing Parameters with TypeScript vs cdk.json
dev.toยท1dยท
Discuss: DEV
๐Ÿ“ฆMonorepos
Preview
Report Post

Introduction

This is the fifth installment of "AWS CDK 100 Drill Exercises."

For more information about AWS CDK 100 Drill Exercises, please refer to this article.

When developing CDK applications, youโ€™ll face the challenge of how to manage different configuration values for each environment. Small instances for development, large instances for production. One NAT Gateway for development, multiple across AZs for production. How should you manage these environment-specific configurations?

In this exercise, weโ€™ll implement two main approaches for managing parameters in CDK and understand the pros and cons of each.

Why is Parameter Management Important?

  1. Environment Isolation: Uโ€ฆ

Similar Posts

Loading similar posts...