Prepared everything for the first release
This commit is contained in:
parent
6844355a92
commit
18ae275c5b
23 changed files with 857 additions and 4 deletions
28
docs/data-sources/projects.md
Normal file
28
docs/data-sources/projects.md
Normal file
|
@ -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)
|
28
docs/index.md
Normal file
28
docs/index.md
Normal file
|
@ -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
|
24
docs/resources/project.md
Normal file
24
docs/resources/project.md
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue