Terraform registry documentation bootstrap

This commit is contained in:
Julien Dessaux 2023-06-19 13:04:25 +02:00
parent 932a149c35
commit 21b3a6e587
Signed by: adyxax
GPG key ID: F92E51B86E07177E
9 changed files with 65 additions and 10 deletions

View file

@ -1,20 +1,28 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "eventline Provider"
subcategory: ""
description: |-
layout: ""
page_title: "Provider: eventline"
description: "The eventline provider allows you to interact with the eventline API."
---
# eventline Provider
# Eventline Provider
The [Eventline](https://www.exograd.com/products/eventline/) 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.
Use the navigation to the left to read about the available resources.
## Example Usage
```terraform
terraform {
required_providers {
eventline = {
source = "adyxax/eventline"
}
}
}
provider "eventline" {
api_key = "12345678-9abc-def0-1234-56789abcdef0"
api_key = var.eventline_api_key
endpoint = "http://localhost:8085/"
}
```