Terraform provider for ORY Keto. It allows for managing Ory Keto relationship resources using Terraform.
- Ory Keto 0.11.0 server or newer, prior versions were tested as part of this repository.
terraform {
required_providers {
oryketo = {
source = "76creates/oryketo"
version = "0.0.1"
}
}
}
provider "oryketo" {
write {
url = "http://localhost:5467"
}
read {
url = "http://localhost:5466"
}
}
resource "oryketo_relationship" "this" {
namespace = "default"
object = "www"
relation = "read"
subject_id = "guest"
}