diff options
Diffstat (limited to '')
-rw-r--r-- | docs/data-sources/projects.md | 28 | ||||
-rw-r--r-- | docs/index.md | 28 | ||||
-rw-r--r-- | docs/resources/project.md | 24 |
3 files changed, 80 insertions, 0 deletions
diff --git a/docs/data-sources/projects.md b/docs/data-sources/projects.md new file mode 100644 index 0000000..63b4985 --- /dev/null +++ b/docs/data-sources/projects.md @@ -0,0 +1,28 @@ +--- +# generated by https://github.com/hashicorp/terraform-plugin-docs +page_title: "eventline_projects Data Source - terraform-provider-eventline" +subcategory: "" +description: |- + Eventline projects data source +--- + +# eventline_projects (Data Source) + +Eventline projects data source + + + +<!-- schema generated by tfplugindocs --> +## Schema + +### Read-Only + +- `elements` (List of Object) Projects list (see [below for nested schema](#nestedatt--elements)) + +<a id="nestedatt--elements"></a> +### Nested Schema for `elements` + +Read-Only: + +- `id` (String) +- `name` (String) diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..c43341d --- /dev/null +++ b/docs/index.md @@ -0,0 +1,28 @@ +--- +# generated by https://github.com/hashicorp/terraform-plugin-docs +page_title: "eventline Provider" +subcategory: "" +description: |- + +--- + +# eventline Provider + + + +## Example Usage + +```terraform +provider "eventline" { + api_key = "12345678-9abc-def0-1234-56789abcdef0" + endpoint = "http://localhost:8085/" +} +``` + +<!-- schema generated by tfplugindocs --> +## Schema + +### Required + +- `api_key` (String, Sensitive) Eventline's api key +- `endpoint` (String) Eventline's HTTP endpoint diff --git a/docs/resources/project.md b/docs/resources/project.md new file mode 100644 index 0000000..21f179f --- /dev/null +++ b/docs/resources/project.md @@ -0,0 +1,24 @@ +--- +# generated by https://github.com/hashicorp/terraform-plugin-docs +page_title: "eventline_project Resource - terraform-provider-eventline" +subcategory: "" +description: |- + Eventline project resource +--- + +# eventline_project (Resource) + +Eventline project resource + + + +<!-- schema generated by tfplugindocs --> +## Schema + +### Required + +- `name` (String) Project name + +### Read-Only + +- `id` (String) Project Id |