Can aws cdk provide remote state?

Viewed 739
1 Answers

The CDK uses CloudFormation under the hood, which manages the remote state of the infrastructure in a similar way like a Terraform state-file. You get the benefit of AWS taking care of state management for you (for free) without the risks of doing it yourself and messing up your state file.

The drawback is that if there is drift between the state CloudFormation thinks resources are in and their actual state, things get tricky.

Related