yage
e199e9bf91
===================================================================== --- Changes ------------------------------ - AWS (the cli wrapper) now checks for it's required variables *on run*. This accomodates scwrypts which may need to run in multiple regions, but make the downstream scwrypt responsible for adding AWS_REGION to the REQUIRED_ENV list! - Got rid of all kinds of hackiness surrounding postgres password evals between both the postgres library and the rds library --- Bug Fixes ---------------------------- - scwrypts --update now pulls tags for proper versioning
20 lines
360 B
Bash
20 lines
360 B
Bash
#####################################################################
|
|
|
|
DEPENDENCIES+=(
|
|
aws
|
|
)
|
|
|
|
REQUIRED_ENV+=()
|
|
|
|
#####################################################################
|
|
|
|
AWS() {
|
|
REQUIRED_ENV=(AWS_REGION AWS_ACCOUNT AWS_PROFILE) CHECK_ENVIRONMENT || return 1
|
|
|
|
aws \
|
|
--profile $AWS_PROFILE \
|
|
--region $AWS_REGION \
|
|
--output json \
|
|
$@
|
|
}
|