Importing a VM as an Image Using VM Import Export - K2587/Vmware-Migration GitHub Wiki
- ### ### ### ********Importing a VM as an Image Using VM Import/Export********### ### ### ### ###
You can use VM Import/Export to import virtual machine (VM) images from your virtualization environment to Amazon EC2 as Amazon Machine Images (AMI), which you can use to launch instances. Subsequently, you can export the VM images from an instance back to your virtualization environment. This enables you to leverage your investments in the VMs that you have built to meet your IT security, configuration management, and compliance requirements by bringing them into Amazon EC2.
- Note
For most VM import needs, we recommend that you use the AWS Server Migration Service. AWS SMS automates the import process (reducing the workload of migrating large VM infrastructures), adds support for incremental updates of changing VMs, and converts your imported VMs into ready-to-use Amazon machine images (AMIs). To get started with AWS SMS, see AWS ServerMigration Service
Contents
Export Your VM from its Virtualization Environment
After you have prepared your VM for export, you can export it from your virtualization environment. When importing a VM as an image, you can import disks in the following formats: Open Virtualization Archive (OVA), Virtual Machine Disk (VMDK), Virtual Hard Disk (VHD/VHDX), and raw. With some virtualization environments, you would export to Open Virtualization Format (OVF), which typically includes one or more VMDK, VHD, or VHDX files, and then package the files into an OVA file.
For more information, see the documentation for your virtualization environment. For example:
VMware β Export an OVF Template Export on the VMware website. Follow the instructions for creating an OVA.
After exporting your VM from your virtualization environment, you can import it to Amazon EC2. The import process is the same regardless of the origin of the VM.
Tasks
- Prerequisites
- Upload the Image to Amazon S3
- Import the VM
- Check the Status of the Import Task
- Cancel an Import Task"
- Next Steps
Prerequisites
If you have not already installed the AWS CLI, see the What Is the AWS Command Line Interface?
You must provide an Amazon S3 bucket and an IAM role named vmimport.
Amazon S3 Bucket
VM Import requires an Amazon S3 bucket to store your disk images, in the Region where you want to import your VMs. You can create a bucket as follows, or use an existing bucket if you prefer.
(Optional) To create an S3 bucket
- Open the Amazon S3 console at https://console.aws.amazon.com/s3/.
- Choose Create Bucket.
- In the Create a Bucket dialog box, do the following:
- For Bucket Name, type a name for your bucket. This name must be unique across all existing bucket names in Amazon S3. In some Regions, there might be additional restrictions on bucket names. For more information, see Bucket Restrictions and Limitations in the Amazon Simple Storage Service Developer Guide.
- For Region, select the Region that you want for your AMI.
- Choose Create.
VM Import Service Role
VM Import requires a role to perform certain operations in your account, such as downloading disk images from an Amazon S3 bucket. You must create a role named vmimport with a trust relationship policy document that allows VM Import to assume the role, and you must attach an IAM policy to the role.
To create the service role
Create a file named trust-policy.json with the following policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": { "Service": "vmie.amazonaws.com" },
"Action": "sts:AssumeRole",
"Condition": {
"StringEquals":{
"sts:Externalid": "vmimport"
}
}
}
]
}
You can save the file anywhere on your computer. Take note of the location of the file, because youβll specify the file in the next step.
- Use the create-role command to create a role named vmimport and give VM Import/Export access to it. Ensure that you specify the full path to the location of the trust-policy.json file, and that you prefix file:// to it:
aws iam create-role --role-name vmimport --assume-role-policy-document "file://C:\import\trust-policy.json"
Note
If you encounter an error stating that βThis policy contains invalid Json,β double-check that the path to the JSON file is provided correctly.
- Create a file named role-policy.json with the following policy, where disk-image-file-bucket is the bucket where the disk images are stored:
{ "Version":"2012-10-17", "Statement":[ { "Effect":"Allow", "Action":[ "s3:GetBucketLocation", "s3:GetObject", "s3:ListBucket" ], "Resource":[ "arn:aws:s3:::disk-image-file-bucket", "arn:aws:s3:::disk-image-file-bucket/*" ] }, { "Effect":"Allow", "Action":[ "ec2:ModifySnapshotAttribute", "ec2:CopySnapshot", "ec2:RegisterImage", "ec2:Describe*" ], "Resource":"*" } ] }
- Use the following put-role-policy command to attach the policy to the role created above. Ensure that you specify the full path to the location of the role-policy.json file.
aws iam put-role-policy --role-name vmimport --policy-name vmimport --policy-document "file://C:\import\role-policy.json"
For more information about IAM roles, see IAM Roles in the IAM User Guide.
Upload the Image to Amazon S3
Upload your VM image file to your Amazon S3 bucket using the upload tool of your choice. For information about uploading files through the S3 console, see Uploading Objects into Amazon S3 For information about the Enhanced Uploader Java applet, see Using the Enhanced Uploader.
Import the VM
After you upload your VM image file to Amazon S3, you can use the AWS CLI to import the image. These tools accept either the Amazon S3 bucket and path to the file or a URL for a public Amazon S3 file. Private Amazon S3 files require a Presigned URL.
The following examples use the AWS CLI command Import Image to create import tasks.
- Example 1: Import an OVA
aws ec2 import-image --description "Windows 2008 OVA" --license-type <value> --disk-containers "file://C:\import\containers.json"
The following is an example containers.json file.
[ { "Description": "Windows 2008 OVA", "Format": "ova", "UserBucket": { "S3Bucket": "my-import-bucket", "S3Key": "vms/my-windows-2008-vm.ova" } }]
- Example 2: Import Multiple Disks
[ { "Description": "First disk", "Format": "vmdk", "UserBucket": { "S3Bucket": "my-import-bucket", "S3Key": "disks/my-windows-2008-vm-disk1.vmdk" } }, { "Description": "Second disk", "Format": "vmdk", "UserBucket": { "S3Bucket": "my-import-bucket", "S3Key": "disks/my-windows-2008-vm-disk2.vmdk" } } ]
- Example 3: Import Disk with Encrypted Option Enabled
aws ec2 import-image --description "Windows 2008 VMDKs" --encrypted --kms-key-id <value> --license-type <value> --disk-containers "file://C:\import\containers.json"
The provided KmsKeyId must not be disabled during the entire import process. For more information, see Amazon EBS Encryption in the Amazon EC2 User Guide.
Check the Status of the Import Task
Use the describe-import-image-tasks command to return the status of an import task.
Status values include the following:
active β The import task is in progress.
deleting β The import task is being canceled.
deleted β The import task is canceled.
updating β Import status is updating.
validating β The imported image is being validated.
validated β The imported image was validated.
converting β The imported image is being converted into an AMI.
completed β The import task is completed and the AMI is ready to use.
aws ec2 describe-import-image-tasks --import-task-ids import-ami-abcd1234
You can also use the older EC2 CLI command ec2 describe-conversion-tasks to achieve the same purpose:
aws ec2 describe-conversion-tasks --region <region>
(Optional) Cancel an Import Task
Use the cancel-import-task command to cancel an active import task.
aws ec2 cancel-import-task --import-task-id import-ami-abcd1234
Next Steps
For some operating systems, the device drivers for enhanced networking and NVMe block devices that are required by Nitro-based instances, are not installed automatically during import. To install these drivers manually, use the directions in the following documentation. Next, create a new AMI from the customized instance.
Windows
- (Recommended)Installing the Latest Version ofEC2Config or"Installing the Latest Version of EC2Launch":https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2launch-download.html
- Enabling Enhanced Networking with the Elastic Network Adapter (ENA) on Windows Instances
- AWS NVMe Drivers for Windows Instances
Linux
Enabling Enhanced Networking with the Elastic Network Adapter (ENA) on Linux Instances
Install or Upgrade the NVMe Driver
After you have an AMI with the required drivers, you can launch it as an instance or copy it to another Region. For more information, see the following documentation.
Windows
Launching an Instance
Copying an AMI