mirror of https://github.com/hashicorp/packer
add a table explaining what to expect with different ssh options for the amazon builders. Also convert builder docs to .erb to support partials
parent
a360516a64
commit
8c9f2f5e1c
@ -0,0 +1,11 @@
|
||||
## Which SSH Options to use:
|
||||
|
||||
This chart breaks down Packer does if you set any of the below SSH options:
|
||||
|
||||
| ssh_password | ssh_private_key_file | ssh_keypair_name | temporary_key_pair_name | Packer will... |
|
||||
| --- | --- | --- | --- | --- |
|
||||
| X | - | - | - | ssh authenticating with username and given password |
|
||||
| - | X | - | - | ssh authenticating with private key file |
|
||||
| - | X | X | - | ssh authenticating with given private key file and "attaching" the keypair to the instance |
|
||||
| - | - | - | X | Create a temporary ssh keypair with a particular name, clean it up |
|
||||
| - | - | - | - | Create a temporary ssh keypair with a default name, clean it up |
|
||||
Loading…
Reference in new issue