diff options
author | Alex <alex@adnab.me> | 2023-10-02 14:30:53 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-10-02 14:30:53 +0000 |
commit | 16aa418e473a5e9ef229060d20f6eb280df272a2 (patch) | |
tree | f71e9f26bff60bce2383aa0a2bf4cd727373c565 /doc/book/quick-start | |
parent | 3a0e07404707568dabb13cecaf79e0466c5fc296 (diff) | |
parent | cb359b4434201b03a3f62b8950d4d6b6f1ab3b36 (diff) | |
download | garage-16aa418e473a5e9ef229060d20f6eb280df272a2.tar.gz garage-16aa418e473a5e9ef229060d20f6eb280df272a2.zip |
Merge pull request 'doc: update endpoint_url documentation' (#641) from flokli/garage:aws-endpoint-url into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/641
Diffstat (limited to 'doc/book/quick-start')
-rw-r--r-- | doc/book/quick-start/_index.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/book/quick-start/_index.md b/doc/book/quick-start/_index.md index 4f974ea5..08932775 100644 --- a/doc/book/quick-start/_index.md +++ b/doc/book/quick-start/_index.md @@ -269,12 +269,14 @@ named `~/.awsrc` with this content: export AWS_ACCESS_KEY_ID=xxxx # put your Key ID here export AWS_SECRET_ACCESS_KEY=xxxx # put your Secret key here export AWS_DEFAULT_REGION='garage' -export AWS_ENDPOINT='http://localhost:3900' +export AWS_ENDPOINT_URL='http://localhost:3900' -function aws { command aws --endpoint-url $AWS_ENDPOINT $@ ; } aws --version ``` +Note you need to have at least `awscli` `>=1.29.0` or `>=2.13.0`, otherwise you +need to specify `--endpoint-url` explicitly on each `awscli` invocation. + Now, each time you want to use `awscli` on this target, run: ```bash |