ENHANCEMENTS:
- Context cancellation on Unix systems will now send Terraform process SIGINT instead of killing it (which is otherwise default
os/exec
behaviour) (#512)- You can change the default
60s
WaitDelay
viaSetWaitDelay(time.Duration)
- You can change the default
- error type returned from individual commands now implements
Unwrap
making it possible to pass it intoerrors.As
and access lower-level error such asexec.ExitError
(#512)
NOTES: