AWS Snowball Edge is no longer available to new customers. New customers should explore AWS DataSync
Importing a virtual machine image to a Snowball Edge device
You can use the AWS CLI and the VM Import/Export service to import a virtual machine (VM) image to the Snowball Edge device as an Amazon Machine Image (AMI). After importing a VM image, register the image as an AMI and launch it as an Amazon EC2-compatible instance.
You can add AMIs from Amazon EC2 to the device when creating a job to order a Snowball Edge device. Use this procedure after you have received the Snowball Edge device. For more information, see Choosing your compute and storage options.
You can also use AWS OpsHub to upload the VM image file. For more information, see Importing an image into your device as an Amazon EC2-compatible AMI in this guide.
Topics
Step 1: Prepare the VM image and upload it to the Snowball Edge device
Prepare the VM image by exporting a VM image from an Amazon EC2 AMI or instance in the AWS Cloud using VM Import/Export or by generating the VM image locally using your choice of virtualization platform.
To export an Amazon EC2 instance as a VM image using VM Import/Export, see Exporting an instance as a VM using VM Import/Export in the VM Import/Export User Guide. To export an Amazon EC2 AMI as a VM image using VM Import/Export, see Exporting a VM directly from an Amazon Machine Image (AMI) in the VM Import/Export User Guide.
If generating a VM image from your local environment, ensure the image is configured for use as an AMI on the Snowball Edge device. You may need to configure the following items, depending on your environment.
Configure and update the operating system.
Set a hostname.
Ensure network time protocol (NTP) is configured.
Include SSH public keys, if necessary. Make local copies of the key pairs. For more information, see Using SSH to Connect to Your Compute Instances on a Snowball Edge.
Install and configure any software you will use on the Snowball Edge device.
Note
Be aware of the following limitations when preparing a disk snapshot for a Snowball Edge device.
-
Snowball Edge currently only support importing snapshots that are in the RAW image format.
-
Snowball Edge currently only support importing snapshots with sizes from 1 GB to 1 TB.
Uploading a VM image to an Amazon S3 bucket on the Snowball Edge device
After preparing a VM image, upload it to an S3 bucket on the Snowball Edge device or cluster. You can use the S3 adapter or Amazon S3 compatible storage on Snowball Edge to upload the snapshot.
To upload the virtual machine image using the S3 adapter
Use the
cpcommand to copy the VM image file to a bucket on the device.aws s3 cpimage-paths3://S3-bucket-name--endpoint http://S3-object-API-endpoint:443--profileprofile-nameFor more information, see Supported AWS CLI commands in this guide.
To upload the VM image using Amazon S3 compatible storage on Snowball Edge
Use the
put-objectcommand to copy the snapshot file to a bucket on the device.aws s3api put-object --bucketbucket-name--keypath-to-snapshot-file--bodysnapshot-file--endpoint-urls3api-endpoint-ip--profileyour-profileFor more information, see Working with S3 objects on a Snowball Edge device.
Step 2: Set up required permissions on the Snowball Edge
For the import to be successful, you must set up permissions for VM Import/Export on the Snowball Edge device, Amazon EC2, and the user.
Note
The service roles and policies that provide these permissions are located on the Snowball Edge device.
Permissions required for VM Import/Export on a Snowball Edge
Before you can start the import process, you must create an IAM role with a trust policy that allows VM Import/Export on the Snowball Edge device to assume the role. Additional permissions are given to the role to allow VM Import/Export on the device to access the image stored in the S3 bucket on the device.
Create a trust policy json file
Following is an example trust policy required to be attached to the role so that VM Import/Export can access the snapshot that needs to be imported from the S3 bucket.
Create a role with the trust policy json file
The role name can be vmimport. You can change it by using the --role-name option in the command:
aws iam create-role --role-namerole-name--assume-role-policy-document file:///trust-policy-json-path--endpoint http://snowball-ip:6078 --region snow --profileprofile-name
The following is an example output from the create-role command.
{ "Role":{ "AssumeRolePolicyDocument":{ "Version": "2012-10-17", "Statement":[ { "Action":"sts:AssumeRole", "Effect":"Allow", "Principal":{ "Service":"vmie.amazonaws.com" } } ] }, "MaxSessionDuration":3600, "RoleId":"AROACEMGEZDGNBVGY3TQOJQGEZAAAABQBB6NSGNAAAABPSVLTREPY3FPAFOLKJ3", "CreateDate":"2022-04-19T22:17:19.823Z", "RoleName":"vmimport", "Path":"/", "Arn":"arn:aws:iam::123456789012:role/vmimport" } }
Create a policy for the role
The following example policy has the minimum required permissions to access Amazon S3.
Change the Amazon S3 bucket name to the one which has your images. For a standalone Snowball Edge device, change snow-id to your job ID. For a cluster of devices, change snow-id to the cluster ID. You also can
use prefixes to further narrow down the location where VM Import/Export can import snapshots from.
Create a policy json file like this.
Create a policy with the policy file:
aws iam create-policy --policy-namepolicy-name--policy-document file:///policy-json-file-path--endpoint http://snowball-ip:6078 --region snow --profileprofile-name
The following is an output example from the create-policy command.
{ "Policy":{ "PolicyName":"vmimport-resource-policy", "PolicyId":"ANPACEMGEZDGNBVGY3TQOJQGEZAAAABOOEE3IIHAAAABWZJPI2VW4UUTFEDBC2R", "Arn":"arn:aws:iam::123456789012:policy/vmimport-resource-policy", "Path":"/", "DefaultVersionId":"v1", "AttachmentCount":0, "IsAttachable":true, "CreateDate":"2020-07-25T23:27:35.690000+00:00", "UpdateDate":"2020-07-25T23:27:35.690000+00:00" } }
Attach the policy to the role
Attach a policy to the preceding role and grant permissions to access the required resources. This allows the local VM Import/Export service to download the snapshot from Amazon S3 on the device.
aws iam attach-role-policy --role-namerole-name--policy-arn arn:aws:iam::123456789012:policy/policy-name--endpoint http://snowball-ip:6078 --region snow --profileprofile-name
Permissions required by the caller on a Snowball Edge
In addition to the role for the Snowball Edge VM Import/Export to assume, you also must ensure that the user has the permissions that allow them to pass the role to VMIE. If you use the default root user to perform the import, the root user already has all the permissions required, so you can skip this step, and go to step 3.
Attach the following two IAM permissions to the user that is doing the import.
-
pass-role -
get-role
Create a policy for the role
The following is an example policy that allows a user to perform the
get-role and pass-role actions for the IAM role.
Create a policy with the policy file:
aws iam create-policy --policy-namepolicy-name--policy-document file:///policy-json-file-path--endpoint http://snowball-ip:6078 --region snow --profileprofile-name
The following is an output example from the create-policy command.
{ "Policy":{ "PolicyName":"caller-policy", "PolicyId":"ANPACEMGEZDGNBVGY3TQOJQGEZAAAABOOOTUOE3AAAAAAPPBEUM7Q7ARPUE53C6R", "Arn":"arn:aws:iam::123456789012:policy/caller-policy", "Path":"/", "DefaultVersionId":"v1", "AttachmentCount":0, "IsAttachable":true, "CreateDate":"2020-07-30T00:58:25.309000+00:00", "UpdateDate":"2020-07-30T00:58:25.309000+00:00" } }
After the policy has been generated, attach the policy to the IAM users that will call the Amazon EC2 API or CLI operation to import the snapshot.
aws iam attach-user-policy --user-nameyour-user-name--policy-arn arn:aws:iam::123456789012:policy/policy-name--endpoint http://snowball-ip:6078 --region snow --profileprofile-name
Permissions Required to call Amazon EC2 APIs on a Snowball Edge
To import a snapshot, the IAM user must have the
ec2:ImportSnapshot permissions. If restricting access to the user
is not required, you can use the ec2:* permissions to grant full Amazon EC2
access. The following are the permissions that can be granted or restricted for
Amazon EC2 on your device. Create a policy file with the content shown:
Create a policy with the policy file:
aws iam create-policy --policy-namepolicy-name--policy-document file:///policy-json-file-path--endpoint http://snowball-ip:6078 --region snow --profileprofile-name
The following is an output example from the create-policy command.
{ "Policy": { "PolicyName": "ec2-import.json", "PolicyId": "ANPACEMGEZDGNBVGY3TQOJQGEZAAAABQBGPDQC5AAAAATYN62UNBFYTF5WVCSCZS", "Arn": "arn:aws:iam::123456789012:policy/ec2-import.json", "Path": "/", "DefaultVersionId": "v1", "AttachmentCount": 0, "IsAttachable": true, "CreateDate": "2022-04-21T16:25:53.504000+00:00", "UpdateDate": "2022-04-21T16:25:53.504000+00:00" } }
After the policy has been generated, attach the policy to the IAM users that will call the Amazon EC2 API or CLI operation to import the snapshot.
aws iam attach-user-policy --user-nameyour-user-name--policy-arn arn:aws:iam::123456789012:policy/policy-name--endpoint http://snowball-ip:6078 --region snow --profileprofile-name
Step 3: Import the VM image as a snapshot on the Snowball Edge
The next step is to import the VM image as a snapshot on the device. The value
of the S3Bucket parameter is the name of the bucket which contains the VM image. The value of the S3Key parameter is the path to the VM image file
in this bucket.
aws ec2 import-snapshot --disk-container "Format=RAW,UserBucket={S3Bucket=bucket-name,S3Key=image-file}" --endpoint http://snowball-ip:8008 --region snow --profileprofile-name
For more information, see import-snapshot
This command doesn't support the following switches.
[--client-data
value][--client-token
value][--dry-run]
[--no-dry-run]
[--encrypted]
[--no-encrypted]
[--kms-key-id
value][--tag-specifications
value]
Example output of import-snapshot command
{ "ImportTaskId":"s.import-snap-1234567890abc", "SnapshotTaskDetail":{ "DiskImageSize":2.0, "Encrypted":false, "Format":"RAW", "Progress":"3", "Status":"active", "StatusMessage":"pending", "UserBucket":{ "S3Bucket":"bucket", "S3Key":"vmimport/image01" } } }
Note
Snowball Edge currently only allow one active import job to run at a time, per device. To start a new import task, either wait for the current task to finish, or choose another available node in a cluster. You can also choose to cancel the current import if you want. To prevent delays, don't reboot the Snowball Edge device while the import is in progress. If you reboot the device, the import will fail, and progress will be deleted when the device becomes accessible. To check the status of your snapshot import task status, use the following command:
aws ec2 describe-import-snapshot-tasks --import-task-idsid--endpoint http://snowball-ip:8008 --region snow --profileprofile-name
Step 4: Register the snapshot as an AMI on the Snowball Edge
When the snapshot import to the device is successful, you can register it using
the register-image command.
Note
You can only register an AMI when all of its snapshots are available.
For more information, see register-image
Example of the register-image command
aws ec2 register-image \ --nameami-01\ --descriptionmy-ami-01\ --block-device-mappings "[{\"DeviceName\": \"/dev/sda1\",\"Ebs\":{\"Encrypted\":false,\"DeleteOnTermination\":true,\"SnapshotId\":\"snapshot-id\",\"VolumeSize\":30}}]" \ --root-device-name /dev/sda1 \ --endpoint http://snowball-ip:8008 \ --region snow \ --profileprofile-name
Following is an example of block device mapping JSON. For more information, see the
block-device-mapping parameter of register-image
[ { "DeviceName": "/dev/sda", "Ebs": { "Encrypted": false, "DeleteOnTermination": true, "SnapshotId": "snapshot-id", "VolumeSize": 30 } } ]
Example of the register-image command
{ "ImageId": "s.ami-8de47d2e397937318" }
Step 5: Launch an instance from the AMI on the Snowball Edge
To launch an instance, see run-instances
The value of the image-id parameter is the value of the ImageId name as the output of the register-image command.
aws ec2 run-instances --image-idimage-id--instance-typeinstance-type--endpoint http://snowball-ip:8008 --region snow --profileprofile-name
{ "Instances":[ { "SourceDestCheck":false, "CpuOptions":{ "CoreCount":1, "ThreadsPerCore":2 }, "InstanceId":"s.i-12345a73123456d1", "EnaSupport":false, "ImageId":"s.ami-1234567890abcdefg", "State":{ "Code":0, "Name":"pending" }, "EbsOptimized":false, "SecurityGroups":[ { "GroupName":"default", "GroupId":"s.sg-1234567890abc" } ], "RootDeviceName":"/dev/sda1", "AmiLaunchIndex":0, "InstanceType":"sbe-c.large" } ], "ReservationId":"s.r-1234567890abc" }
Note
You can also use AWS OpsHub to launch the instance. For more information, see Launching an Amazon EC2-compatible instance in this guide.
Additional AMI actions for a Snowball Edge
You can use additional AWS CLI commands to monitor snapshot import status, get details on snapshots that have been imported, canceling importing a snapshot, and deleting or deregistering snapshots after they have been imported.
Monitoring snapshot import status on a Snowball Edge
To see the current state of the import progress, you can run the Amazon EC2
describe-import-snapshot-tasks command. This command supports
pagination and filtering on the task-state.
Example of the describe-import-snapshot-tasks command
aws ec2 describe-import-snapshot-tasks --import-task-idsid--endpoint http://snowball-ip:8008 --region snow --profileprofile-name
Example of describe-import-snapshot-tasks command output
{ "ImportSnapshotTasks": [ { "ImportTaskId": "s.import-snap-8f6bfd7fc9ead9aca", "SnapshotTaskDetail": { "Description": "Created by AWS-Snowball-VMImport service for s.import-snap-8f6bfd7fc9ead9aca", "DiskImageSize": 8.0, "Encrypted": false, "Format": "RAW", "Progress": "3", "SnapshotId": "s.snap-848a22d7518ad442b", "Status": "active", "StatusMessage": "pending", "UserBucket": { "S3Bucket": "bucket1", "S3Key": "image1" } } } ] }
Note
This command only shows output for tasks that have successfully completed or been marked as
deleted within the last 7 days. Filtering only supports
Name=task-state, Values=active | deleting | deleted |
completed
This command doesn't support the following parameters.
[--dry-run]
[--no-dry-run]
Canceling an import task on a Snowball Edge
To cancel an import task, run the cancel-import-task command.
Example of the cancel-import-task command
aws ec2 cancel-import-task --import-task-idimport-task-id--endpoint http://snowball-ip:8008 --region snow --profileprofile-name
Example of cancel-import-task command output
{ "ImportTaskId": "s.import-snap-8234ef2a01cc3b0c6", "PreviousState": "active", "State": "deleting" }
Note
Only tasks that are not in a completed state can be canceled.
This command doesn't support the following parameters.
[--dry-run]
[--no-dry-run]
Describing snapshots on a Snowball Edge
After a snapshot is imported, you can use this command to describe it. To filter
the snapshots, you can pass in snapshot-ids with the snapshot ID from
the previous import task response. This command supports pagination and filter on
volume-id, status, and start-time.
Example of describe-snapshots command
aws ec2 describe-snapshots --snapshot-idssnapshot-id--endpoint http://snowball-ip:8008 --region snow --profileprofile-name
Example of describe-snapshots command output
{ "Snapshots": [ { "Description": "Created by AWS-Snowball-VMImport service for s.import-snap-8f6bfd7fc9ead9aca", "Encrypted": false, "OwnerId": "123456789012", "SnapshotId": "s.snap-848a22d7518ad442b", "StartTime": "2020-07-30T04:31:05.032000+00:00", "State": "completed", "VolumeSize": 8 } ] }
This command doesn't support the following parameters.
[--restorable-by-user-ids
value][--dry-run]
[--no-dry-run]
Deleting a snapshot from a Snowball Edge device
To remove snapshots that you own and you no longer need, you can use the
delete-snapshot command.
Example of the delete-snapshot command
aws ec2 delete-snapshot --snapshot-idsnapshot-id--endpoint http://snowball-ip:8008 --region snow --profileprofile-name
Note
Snowball Edge does not support deleting snapshots that are in a PENDING state or if it is designated as a root device for an AMI.
This command doesn't support the following parameters.
-
[--dry-run]
-
[--no-dry-run]
Deregistering an AMI on a Snowball Edge
To deregister AMIs that you no longer need, you can run the
deregister-image command. Deregistering an AMI that is in the
Pending state is not currently supported.
Example of the deregister-image command
aws ec2 deregister-image --image-idimage-id--endpoint http://snowball-ip:8008 --region snow --profileprofile-name
This command doesn't support the following parameters.
[--dry-run]
[--no-dry-run]