Merge pull request #3213 from mohae/amazon-instance-doc-settings-a-z

docs: amazon-instnace: alphabetize and indent ami_block_device_mappings for consistency
This commit is contained in:
Chris Bednarski 2016-02-16 15:06:11 -08:00
commit 043878ad7a
1 changed files with 21 additions and 22 deletions

View File

@ -88,28 +88,27 @@ builder.
- `ami_block_device_mappings` (array of block device mappings) - Add the block - `ami_block_device_mappings` (array of block device mappings) - Add the block
device mappings to the AMI. The block device mappings allow for keys: device mappings to the AMI. The block device mappings allow for keys:
- `delete_on_termination` (boolean) - Indicates whether the EBS volume is
- `device_name` (string) - The device name exposed to the instance (for deleted on instance termination
example, "/dev/sdh" or "xvdh"). Required when specifying `volume_size`. - `device_name` (string) - The device name exposed to the instance (for
- `virtual_name` (string) - The virtual device name. See the documentation on example, "/dev/sdh" or "xvdh"). Required when specifying `volume_size`.
[Block Device - `encrypted` (boolean) - Indicates whether to encrypt the volume or not
Mapping](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html) - `iops` (integer) - The number of I/O operations per second (IOPS) that the
for more information volume supports. See the documentation on
- `snapshot_id` (string) - The ID of the snapshot [IOPs](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html)
- `volume_type` (string) - The volume type. gp2 for General Purpose (SSD) for more information
volumes, io1 for Provisioned IOPS (SSD) volumes, and standard for Magnetic - `no_device` (boolean) - Suppresses the specified device included in the
volumes block device mapping of the AMI
- `volume_size` (integer) - The size of the volume, in GiB. Required if not - `snapshot_id` (string) - The ID of the snapshot
specifying a `snapshot_id` - `virtual_name` (string) - The virtual device name. See the documentation on
- `delete_on_termination` (boolean) - Indicates whether the EBS volume is [Block Device
deleted on instance termination Mapping](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html)
- `encrypted` (boolean) - Indicates whether to encrypt the volume or not for more information
- `no_device` (boolean) - Suppresses the specified device included in the - `volume_size` (integer) - The size of the volume, in GiB. Required if not
block device mapping of the AMI specifying a `snapshot_id`
- `iops` (integer) - The number of I/O operations per second (IOPS) that the - `volume_type` (string) - The volume type. gp2 for General Purpose (SSD)
volume supports. See the documentation on volumes, io1 for Provisioned IOPS (SSD) volumes, and standard for Magnetic
[IOPs](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html) volumes
for more information
- `ami_description` (string) - The description to set for the - `ami_description` (string) - The description to set for the
resulting AMI(s). By default this description is empty. resulting AMI(s). By default this description is empty.