An open API service indexing awesome lists of open source software.

https://github.com/76creates/terraform-provider-oryketo

Terraform provider for Ory Keto
https://github.com/76creates/terraform-provider-oryketo

Last synced: 2 months ago
JSON representation

Terraform provider for Ory Keto

Awesome Lists containing this project

README

        

# Ory Keto Terraform Provider

Terraform provider for [ORY Keto](https://github.com/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

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