Files
scwrypts/zsh/aws/common.zsh
T

14 lines
263 B
Bash
Raw Permalink Normal View History

2022-05-24 10:26:05 -06:00
_DEPENDENCIES+=(
aws
jq
)
_REQUIRED_ENV+=(
2022-08-15 18:30:37 -06:00
AWS_ACCOUNT
AWS_PROFILE
AWS_REGION
2022-05-24 10:26:05 -06:00
)
2022-04-28 16:09:23 -06:00
source ${0:a:h}/../common.zsh
#####################################################################
2022-08-15 18:30:37 -06:00
_AWS() { aws --profile $AWS_PROFILE --region $AWS_REGION --output json $@; }