Skip to content

Commit

Permalink
communicator: fix SSH config typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lbajolet-hashicorp committed Aug 18, 2022
1 parent 62ac7b7 commit 07aa828
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -28,7 +28,7 @@
(unless the user has set the `-debug` flag). Defaults to "false";
currently only works on guests with `sed` installed.

- `ssh_key_exchange_algorithms` ([]string) - If set, Packer will override the value of key exchange (kex) altorighms
- `ssh_key_exchange_algorithms` ([]string) - If set, Packer will override the value of key exchange (kex) algorithms
supported by default by golang. Acceptable values include:
"curve25519-sha256@libssh.org", "ecdh-sha2-nistp256",
"ecdh-sha2-nistp384", "ecdh-sha2-nistp521",
Expand Down
2 changes: 1 addition & 1 deletion communicator/config.go
Expand Up @@ -103,7 +103,7 @@ type SSH struct {
// (unless the user has set the `-debug` flag). Defaults to "false";
// currently only works on guests with `sed` installed.
SSHClearAuthorizedKeys bool `mapstructure:"ssh_clear_authorized_keys"`
// If set, Packer will override the value of key exchange (kex) altorighms
// If set, Packer will override the value of key exchange (kex) algorithms
// supported by default by golang. Acceptable values include:
// "curve25519-sha256@libssh.org", "ecdh-sha2-nistp256",
// "ecdh-sha2-nistp384", "ecdh-sha2-nistp521",
Expand Down

0 comments on commit 07aa828

Please sign in to comment.