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
- Host: GitHub
- URL: https://github.com/76creates/terraform-provider-oryketo
- Owner: 76creates
- License: apache-2.0
- Created: 2023-09-19T11:59:57.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-23T14:47:22.000Z (over 1 year ago)
- Last Synced: 2024-05-17T00:32:18.488Z (12 months ago)
- Language: Go
- Size: 46.9 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ory - Ory Keto Terraform provider
- awesome-ory - Ory Keto Terraform provider
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"
}
```