diff --git a/tfexec/options.go b/tfexec/options.go index 6d20869b..2f1a3dbf 100644 --- a/tfexec/options.go +++ b/tfexec/options.go @@ -207,10 +207,11 @@ type ReattachInfo map[string]ReattachConfig // ReattachConfig holds the information Terraform needs to be able to attach // itself to a provider process, so it can drive the process. type ReattachConfig struct { - Protocol string - Pid int - Test bool - Addr ReattachConfigAddr + Protocol string + ProtocolVersion int + Pid int + Test bool + Addr ReattachConfigAddr } // ReattachConfigAddr is a JSON-encoding friendly version of net.Addr.