From dacc16d520523804b5d62a2900aee3a84ca6e6e2 Mon Sep 17 00:00:00 2001 From: johnson2427 <37009091+johnson2427@users.noreply.github.com> Date: Tue, 2 Jul 2024 11:42:10 -0500 Subject: [PATCH] feat: add aws setup to README (#15) --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 3565a1b..040c5d4 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,33 @@ To begin, create a virtual environment set up and activate the virtual environme [Python3](https://www.python.org/downloads/) and [pip](https://pip.pypa.io/en/stable/installation/) installed on your workstation +## AWS Setup + +#### For Mac and Linux +Create a `~/.aws` folder in your home directory: +```bash +mkdir ~/.aws +``` + +Note: get your access key and key id from your IAM in you AWS account [here](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html). +Create a `credentials` file in the `~/.aws` folder: +```bash +cat < ~/.aws/credentials +[default] +aws_access_key_id = YOUR_ACCESS_KEY +aws_secret_access_key = YOUR_SECRET +EOF +``` + +Create a `config` file in the `~/.aws` folder: +```bash +cat < ~/.aws/config +[default] +region = YOUR_REGION +output = json +EOF +``` + ## AWS KMS Key Import Steps For manual setup, follow this [article](https://aws.amazon.com/blogs/database/import-ethereum-private-keys-to-aws-kms/)