website/docs: Missing punctuation mark (#19072)

* Missing punctuation mark

Minor change

* Updated default values for easier reading 

As suggested by @radeksimko
This commit is contained in:
Kaushik NP 2019-08-16 21:13:10 +05:30 committed by Kristin Laemmert
parent 628b50f900
commit 0c0a0ff96e
1 changed files with 8 additions and 8 deletions

View File

@ -51,22 +51,22 @@ provisioner "file" {
**The following arguments are supported by all connection types:**
* `type` - The connection type that should be used. Valid types are `ssh` and `winrm`
Defaults to `ssh`.
* `type` - The connection type that should be used. Valid types are `ssh` and `winrm`.
Defaults to `ssh`.
* `user` - The user that we should use for the connection. Defaults to `root` when
using type `ssh` and defaults to `Administrator` when using type `winrm`.
* `user` - The user that we should use for the connection.
Defaults to `root` when using type `ssh` and defaults to `Administrator` when using type `winrm`.
* `password` - The password we should use for the connection. In some cases this is
specified by the provider.
* `host` - The address of the resource to connect to. This is usually specified by the provider.
* `port` - The port to connect to. Defaults to `22` when using type `ssh` and defaults
to `5985` when using type `winrm`.
* `port` - The port to connect to.
Defaults to `22` when using type `ssh` and defaults to `5985` when using type `winrm`.
* `timeout` - The timeout to wait for the connection to become available. This defaults
to 5 minutes. Should be provided as a string like `30s` or `5m`.
* `timeout` - The timeout to wait for the connection to become available. Should be provided as a string like `30s` or `5m`.
Defaults to 5 minutes.
* `script_path` - The path used to copy scripts meant for remote execution.