aboutsummaryrefslogtreecommitdiff
path: root/doc/book/connect/apps
diff options
context:
space:
mode:
authorJonathan Davies <jpds@protonmail.com>2023-01-02 13:35:26 +0000
committerJonathan Davies <jpds@protonmail.com>2023-01-03 11:11:12 +0000
commit8be862aa193ebe3081d1a74c3c5fc493ae9c82b0 (patch)
treedbde848687e922dee1510c9042d58c21a1251694 /doc/book/connect/apps
parent76230f20282e73a5a5afa33af68152acaf732cf5 (diff)
downloadgarage-8be862aa193ebe3081d1a74c3c5fc493ae9c82b0.tar.gz
garage-8be862aa193ebe3081d1a74c3c5fc493ae9c82b0.zip
Changed all instances of 'key new' to 'key create' to make it consistent as bucket commands issued normally around the same time.
Diffstat (limited to 'doc/book/connect/apps')
-rw-r--r--doc/book/connect/apps/index.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/book/connect/apps/index.md b/doc/book/connect/apps/index.md
index 737351a0..78d9310d 100644
--- a/doc/book/connect/apps/index.md
+++ b/doc/book/connect/apps/index.md
@@ -36,7 +36,7 @@ Second, we suppose you have created a key and a bucket.
As a reminder, you can create a key for your nextcloud instance as follow:
```bash
-garage key new --name nextcloud-key
+garage key create nextcloud-key
```
Keep the Key ID and the Secret key in a pad, they will be needed later.
@@ -138,7 +138,7 @@ a reasonable trade-off for some instances.
Create a key for Peertube:
```bash
-garage key new --name peertube-key
+garage key create peertube-key
```
Keep the Key ID and the Secret key in a pad, they will be needed later.
@@ -252,7 +252,7 @@ As such, your Garage cluster should be configured appropriately for good perform
This is the usual Garage setup:
```bash
-garage key new --name mastodon-key
+garage key create mastodon-key
garage bucket create mastodon-data
garage bucket allow mastodon-data --read --write --key mastodon-key
```
@@ -378,7 +378,7 @@ Supposing you have a working synapse installation, you can add the module with p
Now create a bucket and a key for your matrix instance (note your Key ID and Secret Key somewhere, they will be needed later):
```bash
-garage key new --name matrix-key
+garage key create matrix-key
garage bucket create matrix
garage bucket allow matrix --read --write --key matrix-key
```