Skip to content

Commit

Permalink
Add awless (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman authored Jun 26, 2018
1 parent 3213d6d commit e58bff4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion install/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ TMP ?= /tmp
# $(call github_download_binary_release,version,repo,asset)
github_download_binary_release = $(CURL) -o $(INSTALL_PATH)/$@ https://github.com/$(1)/$@/releases/download/$(2)/$(3) && chmod +x $(INSTALL_PATH)/$@

all: aws-vault \
all: awless \
aws-vault \
chamber \
fetch \
github-commenter \
Expand All @@ -28,6 +29,15 @@ all: aws-vault \
terragrunt \
yq

export AWLESS_VERSION ?= 0.1.11
## Install awless a powerful, innovative and small surface command line interface (CLI) to manage Amazon Web Services
awless:
mkdir -p $(TMP)/$@
$(CURL) -o - https://github.com/wallix/$@/releases/download/v$(AWLESS_VERSION)/$@-$(OS)-$(ARCH).tar.gz | tar -C $(TMP)/$@ -zx $@
mv $(TMP)/$@/$@ $(INSTALL_PATH)/$@
rm -rf $(TMP)/$@
chmod +x $(INSTALL_PATH)/$@

export AWS_VAULT_VERSION ?= 4.2.0
## Install aws-vault to easily assume roles (not related to HashiCorp Vault)
aws-vault:
Expand Down

0 comments on commit e58bff4

Please sign in to comment.