Skip to content

Commit

Permalink
Merge pull request hashicorp#9913 from marjune163/doc-improve
Browse files Browse the repository at this point in the history
add missing section separator for config.ssh part
  • Loading branch information
briancain authored Jun 11, 2018
2 parents 0a89909 + 8e5dc0d commit 4efec92
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions website/source/docs/vagrantfile/ssh_settings.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,18 +155,26 @@ is:
config.ssh.export_command_template = 'export %ENV_KEY%="%ENV_VALUE%"'
```

<hr>

`config.ssh.sudo_command` - The command to use when executing a command
with `sudo`. This defaults to `sudo -E -H %c`. The `%c` will be replaced by
the command that is being executed.

<hr>

`config.ssh.compression` - If `false`, this setting will not include the
compression setting when ssh'ing into a machine. If this is not set, it will
default to `true` and `Compression=yes` will be enabled with ssh.

<hr>

`config.ssh.dsa_authentication` - If `false`, this setting will not include
`DSAAuthentication` when ssh'ing into a machine. If this is not set, it will
default to `true` and `DSAAuthentication=yes` will be used with ssh.

<hr>

`config.ssh.extra_args` - This settings value is passed directly into the
ssh executable. This allows you to pass any arbitrary commands to do things such
as reverse tunneling down into the ssh program. These options can either be
Expand Down

0 comments on commit 4efec92

Please sign in to comment.