Skip to content

Commit 1486b35

Browse files
committed
Add docs
1 parent 5eb163b commit 1486b35

File tree

4 files changed

+49
-2
lines changed

4 files changed

+49
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# liblab Terraform Provider 0.0.6
1+
# liblab Terraform Provider 0.0.8
22

33
This repository contains a Terraform provider that allows you to manage resources through the liblab API.
44

docs/index.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "liblab Provider"
4+
subcategory: ""
5+
description: |-
6+
7+
---
8+
9+
# liblab Provider
10+
11+
12+
13+
14+
15+
<!-- schema generated by tfplugindocs -->
16+
## Schema
17+
18+
### Required
19+
20+
- `auth_token` (String, Sensitive) The authentication token.
21+
- `host` (String) The API host.

docs/resources/token.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "liblab_token Resource - terraform-provider-liblab"
4+
subcategory: ""
5+
description: |-
6+
7+
---
8+
9+
# liblab_token (Resource)
10+
11+
12+
13+
14+
15+
<!-- schema generated by tfplugindocs -->
16+
## Schema
17+
18+
### Required
19+
20+
- `name` (String) name
21+
- `scope` (List of String) scope
22+
23+
### Optional
24+
25+
- `expires_at` (String) expires_at
26+
- `id` (Number) id

internal/provider/provider.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type liblabProviderModel struct {
3131

3232
func (p *Provider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse) {
3333
resp.TypeName = "liblab"
34-
resp.Version = "0.0.7"
34+
resp.Version = "0.0.8"
3535
}
3636

3737
func (p *Provider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) {

0 commit comments

Comments
 (0)