Skip to content

Commit

Permalink
website: fix list formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mwhooker committed Apr 18, 2017
1 parent 69b4a41 commit 56d38b8
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions website/source/docs/builders/amazon-ebs.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ builder.
`BuildRegion` variable is replaced with the value of `region`.

- `source_ami_filter` (object) - Filters used to populate the `source_ami` field.
Example:
Example:

```javascript
```json
{
"source_ami_filter": {
"filters": {
Expand All @@ -250,20 +250,20 @@ builder.
}
```

This selects the most recent Ubuntu 16.04 HVM EBS AMI from Canonical.
NOTE: This will fail unless *exactly* one AMI is returned. In the above
example, `most_recent` will cause this to succeed by selecting the newest image.
This selects the most recent Ubuntu 16.04 HVM EBS AMI from Canonical.
NOTE: This will fail unless *exactly* one AMI is returned. In the above
example, `most_recent` will cause this to succeed by selecting the newest image.

- `filters` (map of strings) - filters used to select a `source_ami`.
NOTE: This will fail unless *exactly* one AMI is returned.
Any filter described in the docs for [DescribeImages](http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html)
is valid.
- `filters` (map of strings) - filters used to select a `source_ami`.
NOTE: This will fail unless *exactly* one AMI is returned.
Any filter described in the docs for [DescribeImages](http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html)
is valid.

- `owners` (array of strings) - This scopes the AMIs to certain Amazon account IDs.
This is helpful to limit the AMIs to a trusted third party, or to your own account.
- `owners` (array of strings) - This scopes the AMIs to certain Amazon account IDs.
This is helpful to limit the AMIs to a trusted third party, or to your own account.

- `most_recent` (bool) - Selects the newest created image when true.
This is most useful for selecting a daily distro build.
- `most_recent` (bool) - Selects the newest created image when true.
This is most useful for selecting a daily distro build.

- `spot_price` (string) - The maximum hourly price to pay for a spot instance
to create the AMI. Spot instances are a type of instance that EC2 starts
Expand Down

0 comments on commit 56d38b8

Please sign in to comment.