Skip to content

76creates/terraform-provider-oryketo

Repository files navigation

Ory Keto Terraform Provider

Terraform provider for ORY Keto. It allows for managing Ory Keto relationship resources using Terraform.

Requirements

  • Ory Keto 0.11.0 server or newer, prior versions were tested as part of this repository.

Getting Started

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"
}