Skip to content

CLI

Keyper deploy CLI wraps cdktf commands for streamlined deployment processes.

Plan

This wraps the cdktf synth and cdktf diff commands underneath. It's the equivalent of terraform plan in cdktf.

keyper deploy plan # add <args> if needed

This will create tf plans for review. This step is typically called in CI pipeline to ensure proposed resource change is acceptable.

Apply

This wraps cdktf deploy{:target="_ blank"} command underneath. It's the equivalent of terraform apply in cdktf.

keyper deploy apply # add <args> if needed

This will create apply tf plans. This step is typically called in CD pipeline to apply the proposed resource change.