blob: 9436c2c77459b0f3f15c43688f22f753f5536416 (
plain) (
tree)
|
|
export AWS_ACCESS_KEY_ID=`cat /tmp/garage.s3 |cut -d' ' -f1`
export AWS_SECRET_ACCESS_KEY=`cat /tmp/garage.s3 |cut -d' ' -f2`
export AWS_DEFAULT_REGION='garage'
function aws { command aws --endpoint-url http://127.0.0.1:3911 $@ ; }
aws --version
|