website: add docs for new security_group_id
This commit is contained in:
parent
2fdcf85510
commit
60ee20f308
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
FEATURES:
|
FEATURES:
|
||||||
|
|
||||||
|
* Amazon EBS builder can now optionally use a pre-made security group
|
||||||
|
instead of randomly generating one.
|
||||||
* DigitalOcean API key and client IDs can now be passed in as
|
* DigitalOcean API key and client IDs can now be passed in as
|
||||||
environmental variables. See the documentatin for more details.
|
environmental variables. See the documentatin for more details.
|
||||||
* VirtualBox and VMware can now have `floppy_files` specified to attach
|
* VirtualBox and VMware can now have `floppy_files` specified to attach
|
||||||
|
|
|
@ -63,6 +63,12 @@ Required:
|
||||||
|
|
||||||
Optional:
|
Optional:
|
||||||
|
|
||||||
|
* `security_group_id` (string) - The ID (_not_ the name) of the security
|
||||||
|
group to assign to the instance. By default this is not set and Packer
|
||||||
|
will automatically create a new temporary security group to allow SSH
|
||||||
|
access. Note that if this is specified, you must be sure the security
|
||||||
|
group allows access to the `ssh_port` given below.
|
||||||
|
|
||||||
* `ssh_port` (int) - The port that SSH will be available on. This defaults
|
* `ssh_port` (int) - The port that SSH will be available on. This defaults
|
||||||
to port 22.
|
to port 22.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue