terraform-provider-eventline/README.md

40 lines
942 B
Markdown
Raw Normal View History

2024-01-10 23:55:26 +01:00
# Eventline terraform provider
[Read the full documentation here](https://registry.terraform.io/providers/adyxax/eventline/latest/docs)
2025-03-06 00:36:17 +01:00
The [Eventline](https://www.exograd.com/products/eventline/) terraform / OpenTofu provider is used to interact with the resources supported by Eventline. The provider needs to be configured with the proper credentials before it can be used. It requires terraform 1.0 or later.
2024-01-10 23:55:26 +01:00
## Example Usage
2025-03-06 00:36:17 +01:00
```hcl
2024-01-10 23:55:26 +01:00
terraform {
required_providers {
eventline = {
source = "adyxax/eventline"
}
}
}
provider "eventline" {
api_key = var.eventline_api_key
endpoint = "http://localhost:8085/"
}
data "eventline_project" "main" {
name = "main"
}
resource "eventline_identity" "example" {
name = "example"
project_id = data.eventline_project.main.id
connector = "eventline"
data = jsonencode({ "key" = "test" })
type = "api_key"
}
```
2024-01-11 22:49:17 +01:00
## Developing the provider
TODO