https://www.ory.sh/ logo
c

cool-yak-12028

03/21/2022, 10:45 AM
Hi all, we have started expoloring ory cloud. Wondering is it possible to use oauthkeeper or keto with cloud instance?
d

damp-sunset-69236

03/21/2022, 10:55 AM
Hello. Could you please tell more about your usecase?
c

cool-yak-12028

03/21/2022, 10:56 AM
we are building a list of platform apis and wants method to control which users have what capabilities on the apis.
We would be mostly focusing on ABAC capabilities
i guess the usecase can get much more complex if the ory also have magical functionalities like aws IAM does 🙂
s

steep-lamp-91158

03/22/2022, 2:40 PM
Keto will be in the cloud very soon 😉
but you can always combine the open source and cloud, as it is 1:1 the same software
f

fierce-toothbrush-41957

04/13/2022, 1:54 PM
Hi @User Keo is in the cloud now? 😆
s

steep-lamp-91158

04/13/2022, 1:55 PM
sorry not yet 😅 there are just a few more tests to fix... working on it really hard in this second gohack
👍 1
f

fierce-toothbrush-41957

04/13/2022, 1:56 PM
Thanks for letting me know. Do you have any timeline? @User
s

steep-lamp-91158

04/13/2022, 1:57 PM
If everything goes well next week, if not a bit later
f

fierce-toothbrush-41957

04/13/2022, 1:58 PM
👍 I see, thanks.
s

steep-lamp-91158

04/14/2022, 10:05 AM
It didn't go well yet...
@User it is now on our staging env and will very likely be released to prod this week 🎉
f

fierce-toothbrush-41957

05/09/2022, 9:04 AM
Hi @User That's good news! Thanks for your hard work and letting me know.
s

steep-lamp-91158

05/09/2022, 9:05 AM
np 😉
f

fierce-toothbrush-41957

05/23/2022, 11:47 PM
@steep-lamp-91158 can I use keto in the cloud now?
s

steep-lamp-91158

05/24/2022, 9:27 AM
yes
f

fierce-toothbrush-41957

05/24/2022, 9:30 AM
Did you update the document for that? Would you guide me use Keto in Ory Cloud?
s

steep-lamp-91158

05/24/2022, 9:39 AM
I'm sorry, the docs are still WIP, also the CLI is currently not compiling on windows 🙄 quickstart: 1. download and build the ory cli: https://github.com/ory/cli 2. run
ory patch project <your-project-id> --add '/services/permission/config/namespaces=[{"id": 0, "name": "whatever"}]'
3. see
ory help
for all the other ways to update/patch/... the keto config 4. run
Copy code
#!/bin/bash
set -euo pipefail

relationtuple='
{
  "namespace": "services",
  "object": "hello-world-service",
  "relation": "access",
  "subject_id": "49333d9d-e12b-40ff-8dd3-50d99d848baf"
}'

curl -X PUT \
     --data "$relationtuple" \
     -H "Authorization: Bearer token"\
     -H "Content-type: application/json"\
     https://<your-project-slug>.<http://projects.oryapis.com/admin/relation-tuples|projects.oryapis.com/admin/relation-tuples>
2 Views