Install vHSM on AWS

Prerequisites

Installing vHSM using AWS marketplace

You can deploy vHSM on Amazon Web Services (AWS) with the official enclaive AWS Marketplace offering of arrow-up-rightvHSM.

To install and run the vhsm-aws container from Amazon ECR on your EC2 instance, follow these steps:

1. Connect to your EC2 instance.

Install and configure Docker on your EC2 instance.

sudo apt update
sudo apt install docker.io

2. Install AWS CLI on your EC2 instance.

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install

3. Configure AWS credentials.

where:

  • AWS Access Key ID: (Get from your AWS IAM)

  • AWS Secret Access Key: (Get from your AWS IAM)

  • Default region name: us-east-1 (or the region you are using)

  • Default output format: Leave it as None

4. Authenticate Docker to Amazon ECR registry where the vhsm container image is stored.

5. Pull the vhsm-aws image from ECR.

For example, to pull the image tagged as 1.4.1-0:

Last updated

Was this helpful?