Committing CDKTF Stacks in Git

Are people committing their CDKTF synthesized stacks to code in git? In the AWS CDK space, it’s common to treat the generated cloud formation templates as CI/CD artifacts and not commit them to code. I’m unsure if the same could be accomplished in Terraform since you would have to plan every stack to figure out what has changed. Also, the terraform configs serve as additional change control documentation which can be beneficial.

It’s really a matter of workflow and preference.

Personally I do commit the output; however, that’s only because I’m then routing it through CI/CD that only works with classic Terraform. Once I get a chance to update with cdktf support I’m planning to remove from git as I view it as just an artifact.