website: fix list formatting
This commit is contained in:
parent
69b4a41752
commit
56d38b8237
|
@ -234,9 +234,9 @@ builder.
|
||||||
`BuildRegion` variable is replaced with the value of `region`.
|
`BuildRegion` variable is replaced with the value of `region`.
|
||||||
|
|
||||||
- `source_ami_filter` (object) - Filters used to populate the `source_ami` field.
|
- `source_ami_filter` (object) - Filters used to populate the `source_ami` field.
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
```javascript
|
```json
|
||||||
{
|
{
|
||||||
"source_ami_filter": {
|
"source_ami_filter": {
|
||||||
"filters": {
|
"filters": {
|
||||||
|
@ -250,20 +250,20 @@ builder.
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
This selects the most recent Ubuntu 16.04 HVM EBS AMI from Canonical.
|
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
|
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.
|
example, `most_recent` will cause this to succeed by selecting the newest image.
|
||||||
|
|
||||||
- `filters` (map of strings) - filters used to select a `source_ami`.
|
- `filters` (map of strings) - filters used to select a `source_ami`.
|
||||||
NOTE: This will fail unless *exactly* one AMI is returned.
|
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)
|
Any filter described in the docs for [DescribeImages](http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html)
|
||||||
is valid.
|
is valid.
|
||||||
|
|
||||||
- `owners` (array of strings) - This scopes the AMIs to certain Amazon account IDs.
|
- `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.
|
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.
|
- `most_recent` (bool) - Selects the newest created image when true.
|
||||||
This is most useful for selecting a daily distro build.
|
This is most useful for selecting a daily distro build.
|
||||||
|
|
||||||
- `spot_price` (string) - The maximum hourly price to pay for a spot instance
|
- `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
|
to create the AMI. Spot instances are a type of instance that EC2 starts
|
||||||
|
|
Loading…
Reference in New Issue