From 21b3a6e58787aae54938b772e3e66f1c14e86766 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 19 Jun 2023 13:04:25 +0200 Subject: Terraform registry documentation bootstrap --- docs/index.md | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) (limited to 'docs/index.md') diff --git a/docs/index.md b/docs/index.md index c43341d..035ab09 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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/" } ``` -- cgit v1.2.3