github.com/kimor79/packer@v0.8.7-0.20151221212622-d507b18eb4cf/website/source/docs/builders/amazon-instance.html.markdown (about) 1 --- 2 description: | 3 The `amazon-instance` Packer builder is able to create Amazon AMIs backed by 4 instance storage as the root device. For more information on the difference 5 between instance storage and EBS-backed instances, see the storage for the root 6 device section in the EC2 documentation. 7 layout: docs 8 page_title: 'Amazon AMI Builder (instance-store)' 9 ... 10 11 # AMI Builder (instance-store) 12 13 Type: `amazon-instance` 14 15 The `amazon-instance` Packer builder is able to create Amazon AMIs backed by 16 instance storage as the root device. For more information on the difference 17 between instance storage and EBS-backed instances, see the ["storage for the 18 root device" section in the EC2 19 documentation](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device). 20 21 This builder builds an AMI by launching an EC2 instance from an existing 22 instance-storage backed AMI, provisioning that running machine, and then 23 bundling and creating a new AMI from that machine. This is all done in your own 24 AWS account. The builder will create temporary keypairs, security group rules, 25 etc. that provide it temporary access to the instance while the image is being 26 created. This simplifies configuration quite a bit. 27 28 The builder does *not* manage AMIs. Once it creates an AMI and stores it in your 29 account, it is up to you to use, delete, etc. the AMI. 30 31 -> **Note** This builder requires that the [Amazon EC2 AMI 32 Tools](http://aws.amazon.com/developertools/368) are installed onto the machine. 33 This can be done within a provisioner, but must be done before the builder 34 finishes running. 35 36 ## Configuration Reference 37 38 There are many configuration options available for the builder. They are 39 segmented below into two categories: required and optional parameters. Within 40 each category, the available configuration keys are alphabetized. 41 42 In addition to the options listed here, a 43 [communicator](/docs/templates/communicator.html) can be configured for this 44 builder. 45 46 ### Required: 47 48 - `access_key` (string) - The access key used to communicate with AWS. [Learn 49 how to set this.](/docs/builders/amazon.html#specifying-amazon-credentials) 50 51 - `account_id` (string) - Your AWS account ID. This is required for bundling 52 the AMI. This is *not the same* as the access key. You can find your account 53 ID in the security credentials page of your AWS account. 54 55 - `ami_name` (string) - The name of the resulting AMI that will appear when 56 managing AMIs in the AWS console or via APIs. This must be unique. To help 57 make this unique, use a function like `timestamp` (see [configuration 58 templates](/docs/templates/configuration-templates.html) for more info) 59 60 - `instance_type` (string) - The EC2 instance type to use while building the 61 AMI, such as "m1.small". 62 63 - `region` (string) - The name of the region, such as "us-east-1", in which to 64 launch the EC2 instance to create the AMI. 65 66 - `s3_bucket` (string) - The name of the S3 bucket to upload the AMI. This 67 bucket will be created if it doesn't exist. 68 69 - `secret_key` (string) - The secret key used to communicate with AWS. [Learn 70 how to set this.](/docs/builders/amazon.html#specifying-amazon-credentials) 71 72 - `source_ami` (string) - The initial AMI used as a base for the newly 73 created machine. 74 75 - `ssh_username` (string) - The username to use in order to communicate over 76 SSH to the running machine. 77 78 - `x509_cert_path` (string) - The local path to a valid X509 certificate for 79 your AWS account. This is used for bundling the AMI. This X509 certificate 80 must be registered with your account from the security credentials page in 81 the AWS console. 82 83 - `x509_key_path` (string) - The local path to the private key for the X509 84 certificate specified by `x509_cert_path`. This is used for bundling 85 the AMI. 86 87 ### Optional: 88 89 - `ami_block_device_mappings` (array of block device mappings) - Add the block 90 device mappings to the AMI. The block device mappings allow for keys: 91 92 - `device_name` (string) - The device name exposed to the instance (for 93 example, "/dev/sdh" or "xvdh"). Required when specifying `volume_size`. 94 - `virtual_name` (string) - The virtual device name. See the documentation on 95 [Block Device 96 Mapping](http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html) 97 for more information 98 - `snapshot_id` (string) - The ID of the snapshot 99 - `volume_type` (string) - The volume type. gp2 for General Purpose (SSD) 100 volumes, io1 for Provisioned IOPS (SSD) volumes, and standard for Magnetic 101 volumes 102 - `volume_size` (integer) - The size of the volume, in GiB. Required if not 103 specifying a `snapshot_id` 104 - `delete_on_termination` (boolean) - Indicates whether the EBS volume is 105 deleted on instance termination 106 - `encrypted` (boolean) - Indicates whether to encrypt the volume or not 107 - `no_device` (boolean) - Suppresses the specified device included in the 108 block device mapping of the AMI 109 - `iops` (integer) - The number of I/O operations per second (IOPS) that the 110 volume supports. See the documentation on 111 [IOPs](http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html) 112 for more information 113 - `ami_description` (string) - The description to set for the 114 resulting AMI(s). By default this description is empty. 115 116 - `ami_groups` (array of strings) - A list of groups that have access to 117 launch the resulting AMI(s). By default no groups have permission to launch 118 the AMI. `all` will make the AMI publicly accessible. AWS currently doesn't 119 accept any value other than "all". 120 121 - `ami_product_codes` (array of strings) - A list of product codes to 122 associate with the AMI. By default no product codes are associated with 123 the AMI. 124 125 - `ami_regions` (array of strings) - A list of regions to copy the AMI to. 126 Tags and attributes are copied along with the AMI. AMI copying takes time 127 depending on the size of the AMI, but will generally take many minutes. 128 129 - `ami_users` (array of strings) - A list of account IDs that have access to 130 launch the resulting AMI(s). By default no additional users other than the 131 user creating the AMI has permissions to launch it. 132 133 - `ami_virtualization_type` (string) - The type of virtualization for the AMI 134 you are building. This option is required to register HVM images. Can be 135 "paravirtual" (default) or "hvm". 136 137 - `associate_public_ip_address` (boolean) - If using a non-default VPC, public 138 IP addresses are not provided by default. If this is toggled, your new 139 instance will get a Public IP. 140 141 - `availability_zone` (string) - Destination availability zone to launch 142 instance in. Leave this empty to allow Amazon to auto-assign. 143 144 - `bundle_destination` (string) - The directory on the running instance where 145 the bundled AMI will be saved prior to uploading. By default this is "/tmp". 146 This directory must exist and be writable. 147 148 - `bundle_prefix` (string) - The prefix for files created from bundling the 149 root volume. By default this is "image-{{timestamp}}". The `timestamp` 150 variable should be used to make sure this is unique, otherwise it can 151 collide with other created AMIs by Packer in your account. 152 153 - `bundle_upload_command` (string) - The command to use to upload the 154 bundled volume. See the "custom bundle commands" section below for 155 more information. 156 157 - `bundle_vol_command` (string) - The command to use to bundle the volume. See 158 the "custom bundle commands" section below for more information. 159 160 - `ebs_optimized` (boolean) - Mark instance as [EBS 161 Optimized](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html). 162 Default `false`. 163 164 - `enhanced_networking` (boolean) - Enable enhanced 165 networking (SriovNetSupport) on HVM-compatible AMIs. If true, add 166 `ec2:ModifyInstanceAttribute` to your AWS IAM policy. 167 168 - `force_deregister` (boolean) - Force Packer to first deregister an existing 169 AMI if one with the same name already exists. Default `false`. 170 171 - `iam_instance_profile` (string) - The name of an [IAM instance 172 profile](http://docs.aws.amazon.com/IAM/latest/UserGuide/instance-profiles.html) 173 to launch the EC2 instance with. 174 175 - `launch_block_device_mappings` (array of block device mappings) - Add the 176 block device mappings to the launch instance. The block device mappings are 177 the same as `ami_block_device_mappings` above. 178 179 - `run_tags` (object of key/value strings) - Tags to apply to the instance 180 that is *launched* to create the AMI. These tags are *not* applied to the 181 resulting AMI unless they're duplicated in `tags`. 182 183 - `security_group_id` (string) - The ID (*not* the name) of the security group 184 to assign to the instance. By default this is not set and Packer will 185 automatically create a new temporary security group to allow SSH access. 186 Note that if this is specified, you must be sure the security group allows 187 access to the `ssh_port` given below. 188 189 - `security_group_ids` (array of strings) - A list of security groups as 190 described above. Note that if this is specified, you must omit the 191 `security_group_id`. 192 193 - `spot_price` (string) - The maximum hourly price to launch a spot instance 194 to create the AMI. It is a type of instances that EC2 starts when the 195 maximum price that you specify exceeds the current spot price. Spot price 196 will be updated based on available spot instance capacity and current spot 197 Instance requests. It may save you some costs. You can set this to "auto" 198 for Packer to automatically discover the best spot price or to "0" to use 199 an on demand instance (default). 200 201 - `spot_price_auto_product` (string) - Required if `spot_price` is set 202 to "auto". This tells Packer what sort of AMI you're launching to find the 203 best spot price. This must be one of: `Linux/UNIX`, `SUSE Linux`, `Windows`, 204 `Linux/UNIX (Amazon VPC)`, `SUSE Linux (Amazon VPC)`, `Windows (Amazon VPC)` 205 206 - `ssh_keypair_name` (string) - If specified, this is the key that will be 207 used for SSH with the machine. By default, this is blank, and Packer will 208 generate a temporary keypair. `ssh_private_key_file` must be specified 209 with this. 210 211 - `ssh_private_ip` (boolean) - If true, then SSH will always use the private 212 IP if available. 213 214 - `subnet_id` (string) - If using VPC, the ID of the subnet, such as 215 "subnet-12345def", where Packer will launch the EC2 instance. This field is 216 required if you are using an non-default VPC. 217 218 - `tags` (object of key/value strings) - Tags applied to the AMI. 219 220 - `temporary_key_pair_name` (string) - The name of the temporary keypair 221 to generate. By default, Packer generates a name with a UUID. 222 223 - `user_data` (string) - User data to apply when launching the instance. Note 224 that you need to be careful about escaping characters due to the templates 225 being JSON. It is often more convenient to use `user_data_file`, instead. 226 227 - `user_data_file` (string) - Path to a file that will be used for the user 228 data when launching the instance. 229 230 - `vpc_id` (string) - If launching into a VPC subnet, Packer needs the VPC ID 231 in order to create a temporary security group within the VPC. 232 233 - `x509_upload_path` (string) - The path on the remote machine where the X509 234 certificate will be uploaded. This path must already exist and be writable. 235 X509 certificates are uploaded after provisioning is run, so it is perfectly 236 okay to create this directory as part of the provisioning process. 237 238 - `windows_password_timeout` (string) - The timeout for waiting for a Windows 239 password for Windows instances. Defaults to 20 minutes. Example value: "10m" 240 241 ## Basic Example 242 243 Here is a basic example. It is completely valid except for the access keys: 244 245 ``` {.javascript} 246 { 247 "type": "amazon-instance", 248 "access_key": "YOUR KEY HERE", 249 "secret_key": "YOUR SECRET KEY HERE", 250 "region": "us-east-1", 251 "source_ami": "ami-d9d6a6b0", 252 "instance_type": "m1.small", 253 "ssh_username": "ubuntu", 254 255 "account_id": "0123-4567-0890", 256 "s3_bucket": "packer-images", 257 "x509_cert_path": "x509.cert", 258 "x509_key_path": "x509.key", 259 "x509_upload_path": "/tmp", 260 261 "ami_name": "packer-quick-start {{timestamp}}" 262 } 263 ``` 264 265 -> **Note:** Packer can also read the access key and secret access key from 266 environmental variables. See the configuration reference in the section above 267 for more information on what environmental variables Packer will look for. 268 269 ## Accessing the Instance to Debug 270 271 If you need to access the instance to debug for some reason, run the builder 272 with the `-debug` flag. In debug mode, the Amazon builder will save the private 273 key in the current directory and will output the DNS or IP information as well. 274 You can use this information to access the instance as it is running. 275 276 ## Custom Bundle Commands 277 278 A lot of the process required for creating an instance-store backed AMI involves 279 commands being run on the actual source instance. Specifically, the 280 `ec2-bundle-vol` and `ec2-upload-bundle` commands must be used to bundle the 281 root filesystem and upload it, respectively. 282 283 Each of these commands have a lot of available flags. Instead of exposing each 284 possible flag as a template configuration option, the instance-store AMI builder 285 for Packer lets you customize the entire command used to bundle and upload the 286 AMI. 287 288 These are configured with `bundle_vol_command` and `bundle_upload_command`. Both 289 of these configurations are [configuration 290 templates](/docs/templates/configuration-templates.html) and have support for 291 their own set of template variables. 292 293 ### Bundle Volume Command 294 295 The default value for `bundle_vol_command` is shown below. It is split across 296 multiple lines for convenience of reading. The bundle volume command is 297 responsible for executing `ec2-bundle-vol` in order to store and image of the 298 root filesystem to use to create the AMI. 299 300 ``` {.text} 301 sudo -i -n ec2-bundle-vol \ 302 -k {{.KeyPath}} \ 303 -u {{.AccountId}} \ 304 -c {{.CertPath}} \ 305 -r {{.Architecture}} \ 306 -e {{.PrivatePath}}/* \ 307 -d {{.Destination}} \ 308 -p {{.Prefix}} \ 309 --batch \ 310 --no-filter 311 ``` 312 313 The available template variables should be self-explanatory based on the 314 parameters they're used to satisfy the `ec2-bundle-vol` command. 315 316 \~> **Warning!** Some versions of ec2-bundle-vol silently ignore all .pem and 317 .gpg files during the bundling of the AMI, which can cause problems on some 318 systems, such as Ubuntu. You may want to customize the bundle volume command to 319 include those files (see the `--no-filter` option of ec2-bundle-vol). 320 321 ### Bundle Upload Command 322 323 The default value for `bundle_upload_command` is shown below. It is split across 324 multiple lines for convenience of reading. The bundle upload command is 325 responsible for taking the bundled volume and uploading it to S3. 326 327 ``` {.text} 328 sudo -i -n ec2-upload-bundle \ 329 -b {{.BucketName}} \ 330 -m {{.ManifestPath}} \ 331 -a {{.AccessKey}} \ 332 -s {{.SecretKey}} \ 333 -d {{.BundleDirectory}} \ 334 --batch \ 335 --region {{.Region}} \ 336 --retry 337 ``` 338 339 The available template variables should be self-explanatory based on the 340 parameters they're used to satisfy the `ec2-upload-bundle` command.