On tfcmt possible arguments and how the arguments are processed #1033
-
QuestionHello. I found that in our project
Background of the questionNo response Example Code$ Configuration Reference |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
tfcmt executes a command with arguments after So e.g. tfcmt plan -- terraform plan -detailed-exitcode -parallelism=20 You can also execute a command other than e.g. terraform plan > result.txt 2>&1
tfcmt plan -- cat result.txt
We don't assume the use case at all. Could you explain why you want to run |
Beta Was this translation helpful? Give feedback.
tfcmt executes a command with arguments after
--
.So
tfcmt plan -- terraform plan
executes a commandterraform plan
.You can use any terraform options freely.
e.g.
You can also execute a command other than
terraform plan
.e.g.
We don't assume the use case at all.
So I'm not sure if tfcmt works well.
Maybe tfcmt can't parse the output of the command well.
Could you explain why you want to run
tfcmt plan -- terraform apply
…