Skip to content

Commit

Permalink
start of ssm-refactors-2025-01-11-qWbXBE πŸͺ„ - kamangir/bolt#746
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Jan 12, 2025
1 parent 182142b commit ca83384
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ create a copy of [`sample.env`](./abcli/sample.env) as `.env` and fill in the se

[![pylint](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/awesome-bash-cli/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/abcli.svg)](https://pypi.org/project/abcli/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/abcli)](https://pypistats.org/packages/abcli)

built by πŸŒ€ [`blue_options-4.180.1`](https://github.com/kamangir/awesome-bash-cli), based on πŸͺ„ [`abcli-9.462.1`](https://github.com/kamangir/awesome-bash-cli).
built by πŸŒ€ [`blue_options-4.183.1`](https://github.com/kamangir/awesome-bash-cli), based on πŸͺ„ [`abcli-9.463.1`](https://github.com/kamangir/awesome-bash-cli).
7 changes: 6 additions & 1 deletion abcli/.abcli/plugins/ssm/get.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,15 @@ function abcli_ssm_get() {
--format shell); do

secret_name=$(python3 -c "print('$line'.split('=',1)[0])")
abcli_log "πŸ”‘ $secret_name"

secret_value=$(abcli_ssm get $secret_name)

if [[ -z "$secret_value" ]]; then
abcli_log "πŸ”‘ $secret_name (blank)"
else
abcli_log "πŸ”‘ $secret_name"
fi

export $secret_name=$secret_value

((count++))
Expand Down
2 changes: 1 addition & 1 deletion abcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DESCRIPTION = f"{ICON} A language to speak AI."

VERSION = "9.462.1"
VERSION = "9.463.1"

REPO_NAME = "awesome-bash-cli"

Expand Down

0 comments on commit ca83384

Please sign in to comment.