Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 683 Bytes

README.md

File metadata and controls

36 lines (30 loc) · 683 Bytes

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