Setting up AWS Secrets Manager
This short guide will help you with setting up AWS Secrets Manager on your macOS or Linux machine.
Creating your AWS Access Key
-
Go to AWS Console.
-
Under Access keys for CLI, SDK & API access, click the Create access key button and save the csv file.
Installing brew
Now, you can install brew
:
-
Go to brew.
-
Copy the below install command:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
Wait until the installation process is finished.
-
Follow the instruction displayed in the Next Steps to add Homebrew to your local path.
Installing and configuring AWS
-
Run the following command:
brew install awscli
-
Run the following command:
aws configure
-
Using the csv file that you have saved, fill in the following:
-
AWS Access Key ID [None]: your access key ID
-
AWS Secret Access Key [None]: your Secret Access Key
-
Default region name [None] =
eu-central-1
-
Default output format [None] =
json
-
-
Run the below command to finish the installation process:
brew install jq