Add some more documentation around ssh_keypair_name and ssh_private_key_file
This commit is contained in:
parent
23c4c015a6
commit
cef4e88922
|
@ -199,13 +199,19 @@ builder.
|
||||||
`Linux/UNIX (Amazon VPC)`, `SUSE Linux (Amazon VPC)`, `Windows (Amazon VPC)`
|
`Linux/UNIX (Amazon VPC)`, `SUSE Linux (Amazon VPC)`, `Windows (Amazon VPC)`
|
||||||
|
|
||||||
- `ssh_keypair_name` (string) - If specified, this is the key that will be
|
- `ssh_keypair_name` (string) - If specified, this is the key that will be
|
||||||
used for SSH with the machine. By default, this is blank, and Packer will
|
used for SSH with the machine. The key must match a key pair name loaded
|
||||||
|
up into Amazon EC2. By default, this is blank, and Packer will
|
||||||
generate a temporary keypair. `ssh_private_key_file` must be specified
|
generate a temporary keypair. `ssh_private_key_file` must be specified
|
||||||
with this.
|
when `ssh_keypair_name` is utilized.
|
||||||
|
|
||||||
- `ssh_private_ip` (boolean) - If true, then SSH will always use the private
|
- `ssh_private_ip` (boolean) - If true, then SSH will always use the private
|
||||||
IP if available.
|
IP if available.
|
||||||
|
|
||||||
|
- `ssh_private_key_file` (string) - Is required if `ssh_keypair_name` is
|
||||||
|
specified. This is the name of a private SSH key file located on the
|
||||||
|
same machine running packer so the packer scripts can SSH into the machine
|
||||||
|
being created (eg. - /home/mitchellh/.ssh/id_rsa).
|
||||||
|
|
||||||
- `subnet_id` (string) - If using VPC, the ID of the subnet, such as
|
- `subnet_id` (string) - If using VPC, the ID of the subnet, such as
|
||||||
"subnet-12345def", where Packer will launch the EC2 instance. This field is
|
"subnet-12345def", where Packer will launch the EC2 instance. This field is
|
||||||
required if you are using an non-default VPC.
|
required if you are using an non-default VPC.
|
||||||
|
|
Loading…
Reference in New Issue