Skip to content
Wenzel Kuhn edited this page May 13, 2022 · 5 revisions

Installation

Download awless

Choose one of the following options:

  1. On macOS, use homebrew: brew tap wallix/awless; brew install awless
  2. With curl (macOS/Linux), run: curl https://raw.githubusercontent.com/wallix/awless/master/getawless.sh | bash
  3. Download the latest awless binaries (Windows/Linux/macOS) from Github
  4. If you have Golang already installed, install from the source with: go get -u github.com/wallix/awless

Setup your AWS account with awless

If you have previously used aws CLI or aws-shell, you don't need to do anything! Your credentials will be automatically loaded by awless from the ~/.aws/credentials folder.

Otherwise, get your AWS credentials from IAM console. Then, you can either download and store them to ~/.aws/credentials (Unix) or %UserProfile%\.aws (Windows). Or, export the environment variables AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY in your shell session:

export AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
export AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

You can find more information about how to get your AWS credentials on Amazon Web Services user guide.