Skip to content

Commit

Permalink
fixed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Chubatiuk committed May 4, 2023
1 parent 0bfcb7f commit 50eb9a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions provider/data_source_ssh_tunnel.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,6 @@ func (d *SSHTunnelDataSource) Read(ctx context.Context, req datasource.ReadReque
}
cmdargs = append(cmdargs, os.Args[0])
cmd := exec.Command(cmdargs[0], cmdargs[1:]...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
env := []string{
fmt.Sprintf("TF_SSH_PROVIDER_TUNNEL_PROTO=%s", proto),
fmt.Sprintf("TF_SSH_PROVIDER_TUNNEL_ADDR=%s", tunnelServerInbound.Addr().String()),
Expand Down
4 changes: 2 additions & 2 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ The following arguments are supported:
The following arguments are supported by the `auth` configuration block:

* `sock` - (Optional) SSH Agent UNIX socket path.
* `password` - (Optional) SSH server auth password. Conflicts with `auth.0.private_key`.
* `private_key` - (Optional) Configuration block for SSH private key auth. Conflicts with `auth.0.password`. Detailed below.
* `password` - (Optional) SSH server auth password. Conflicts with `auth.private_key`.
* `private_key` - (Optional) Configuration block for SSH private key auth. Conflicts with `auth.password`. Detailed below.

### server Configuration Block

Expand Down

0 comments on commit 50eb9a2

Please sign in to comment.