Output
public enum OutputControl how the stdout/stderr output of terraform is handled
- 
                    
                    Discard the output DeclarationSwift case discard
- 
                    
                    Forward the output to stdout/stderr DeclarationSwift case passthrough
- 
                    
                    Forward the output to stdout/stderr, if the exit code is non-zero DeclarationSwift case passthroughOnFailure
- 
                    
                    Collect the output and invoke the closure once the process has ended. DeclarationSwift case collect((Data) -> Void)
 
            