Run command cdktf deploy with parameters

Hi there.
I use Python for developing scripts. Script should will be able to deploy the same environment with different parameters.
Now I solve this problem by using this approach.

  1. pipenv run ./main.py eu-west-3c blue
    then I go to the folder cdktf.out and after that start
  2. terraform apply

Is it possible to combine those parameters with command cdktf deploy

Probably the easiest would be using environment variables. Other than that, the cdktf deploy / diff / destroy / synth commands take an app flag. You could do cdktf deploy --app "pipenv run ./main.py eu-west-3c blue"

Thanks for your support!