Hi all, we have started expoloring ory cloud. Wond...
# talk-keto
c
Hi all, we have started expoloring ory cloud. Wondering is it possible to use oauthkeeper or keto with cloud instance?
d
Hello. Could you please tell more about your usecase?
c
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
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
Hi @User Keo is in the cloud now? 😆
s
sorry not yet 😅 there are just a few more tests to fix... working on it really hard in this second gohack
👍 1
f
Thanks for letting me know. Do you have any timeline? @User
s
If everything goes well next week, if not a bit later
f
👍 I see, thanks.
s
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
Hi @User That's good news! Thanks for your hard work and letting me know.
s
np 😉
f
@steep-lamp-91158 can I use keto in the cloud now?
s
yes
f
Did you update the document for that? Would you guide me use Keto in Ory Cloud?
s
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>