fix more docs
This commit is contained in:
parent
9360f57b42
commit
d135106171
|
@ -48,7 +48,8 @@ type RunConfig struct {
|
||||||
// },
|
// },
|
||||||
// "most_recent": true
|
// "most_recent": true
|
||||||
// }
|
// }
|
||||||
// } ```
|
// }
|
||||||
|
// ```
|
||||||
//
|
//
|
||||||
// This selects the most recent production Ubuntu 16.04 shared to you by
|
// This selects the most recent production Ubuntu 16.04 shared to you by
|
||||||
// the given owner. NOTE: This will fail unless *exactly* one image is
|
// the given owner. NOTE: This will fail unless *exactly* one image is
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<!-- Code generated from the comments of the BlockDevice struct in builder/amazon/ebsvolume/block_device.go; DO NOT EDIT MANUALLY -->
|
<!-- Code generated from the comments of the BlockDevice struct in builder/amazon/ebsvolume/block_device.go; DO NOT EDIT MANUALLY -->
|
||||||
|
|
||||||
- `tags` (awscommon.TagMap) - Tags applied to the AMI. This is a
|
- `tags` (awscommon.TagMap) - Tags to apply to the volume. These are retained after the builder
|
||||||
template engine, see Build template
|
completes. This is a [template engine](/docs/templates/engine.html), see
|
||||||
data for more information.
|
[Build template data](#build-template-data) for more information.
|
||||||
|
|
|
@ -76,8 +76,17 @@
|
||||||
|
|
||||||
CLI example `az vm list-sizes --location westus`
|
CLI example `az vm list-sizes --location westus`
|
||||||
|
|
||||||
- `managed_image_resource_group_name` (string) - Managed Image Resource Group Name
|
- `managed_image_resource_group_name` (string) - Specify the managed image resource group name where the result of the
|
||||||
- `managed_image_name` (string) - Managed Image Name
|
Packer build will be saved. The resource group must already exist. If
|
||||||
|
this value is set, the value managed_image_name must also be set. See
|
||||||
|
documentation to learn more about managed images.
|
||||||
|
|
||||||
|
- `managed_image_name` (string) - Specify the managed image name where the result of the Packer build will
|
||||||
|
be saved. The image name must not exist ahead of time, and will not be
|
||||||
|
overwritten. If this value is set, the value
|
||||||
|
managed_image_resource_group_name must also be set. See documentation to
|
||||||
|
learn more about managed images.
|
||||||
|
|
||||||
- `managed_image_storage_account_type` (string) - Specify the storage account
|
- `managed_image_storage_account_type` (string) - Specify the storage account
|
||||||
type for a managed image. Valid values are Standard_LRS and Premium_LRS.
|
type for a managed image. Valid values are Standard_LRS and Premium_LRS.
|
||||||
The default is Standard_LRS.
|
The default is Standard_LRS.
|
||||||
|
@ -100,15 +109,21 @@
|
||||||
256 characters. Tags are applied to every resource deployed by a Packer
|
256 characters. Tags are applied to every resource deployed by a Packer
|
||||||
build, i.e. Resource Group, VM, NIC, VNET, Public IP, KeyVault, etc.
|
build, i.e. Resource Group, VM, NIC, VNET, Public IP, KeyVault, etc.
|
||||||
|
|
||||||
- `resource_group_name` (string) - Resource Group Name
|
- `resource_group_name` (string) - Resource group under which the final artifact will be stored.
|
||||||
- `storage_account` (string) - Storage Account
|
|
||||||
|
- `storage_account` (string) - Storage account under which the final artifact will be stored.
|
||||||
|
|
||||||
- `temp_compute_name` (string) - temporary name assigned to the VM. If this
|
- `temp_compute_name` (string) - temporary name assigned to the VM. If this
|
||||||
value is not set, a random value will be assigned. Knowing the resource
|
value is not set, a random value will be assigned. Knowing the resource
|
||||||
group and VM name allows one to execute commands to update the VM during a
|
group and VM name allows one to execute commands to update the VM during a
|
||||||
Packer build, e.g. attach a resource disk to the VM.
|
Packer build, e.g. attach a resource disk to the VM.
|
||||||
|
|
||||||
- `temp_resource_group_name` (string) - Temp Resource Group Name
|
- `temp_resource_group_name` (string) - name assigned to the temporary resource group created during the build.
|
||||||
- `build_resource_group_name` (string) - Build Resource Group Name
|
If this value is not set, a random value will be assigned. This resource
|
||||||
|
group is deleted at the end of the build.
|
||||||
|
|
||||||
|
- `build_resource_group_name` (string) - Specify an existing resource group to run the build in.
|
||||||
|
|
||||||
- `private_virtual_network_with_public_ip` (bool) - This value allows you to
|
- `private_virtual_network_with_public_ip` (bool) - This value allows you to
|
||||||
set a virtual_network_name and obtain a public IP. If this value is not
|
set a virtual_network_name and obtain a public IP. If this value is not
|
||||||
set and virtual_network_name is defined Packer is only allowed to be
|
set and virtual_network_name is defined Packer is only allowed to be
|
||||||
|
|
Loading…
Reference in New Issue