You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see in the code that -input=false is turned off for validate and workspace but in my case I need it removed so I can call terraform output. Rather than adding all commands that don't take input, can we just have a flag variable that allows us to turn it off?
The text was updated successfully, but these errors were encountered:
When I execute the terraform task with this arguments "output myvar", the task sends an error because these defaults arguments are automatically added to the command line : "-input=false -no-color"
I can reproduce the same behavior with a simple command line test.
The "input" arguments should not be used with the "output" action.
For your information, I think that the problem comes from this line :
I see in the code that -input=false is turned off for
validate
andworkspace
but in my case I need it removed so I can callterraform output
. Rather than adding all commands that don't take input, can we just have a flag variable that allows us to turn it off?The text was updated successfully, but these errors were encountered: