aboutsummaryrefslogtreecommitdiff
path: root/script/dev-env-aws.sh
blob: 9436c2c77459b0f3f15c43688f22f753f5536416 (plain) (blame)
1
2
3
4
5
6
7
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