Goldstack templates invoke other applications by using Node.js exec.
For instance, to call the AWS CLI or the Terraform CLI - usually by running a corresponding image in Docker.
Thus arguments need to be passed to these other programs, which can be brittle as seen in #42.
A review should be conducted how this can be made more resilient, esp for the serverless API, where the names of local files can translate into command line arguments (e.g. how does it handle file names with spaces).
Probably good to develop a seperate utility module that sanitises CLI arguments.
Goldstack templates invoke other applications by using Node.js exec.
For instance, to call the AWS CLI or the Terraform CLI - usually by running a corresponding image in Docker.
Thus arguments need to be passed to these other programs, which can be brittle as seen in #42.
A review should be conducted how this can be made more resilient, esp for the serverless API, where the names of local files can translate into command line arguments (e.g. how does it handle file names with spaces).
Probably good to develop a seperate utility module that sanitises CLI arguments.