Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
henryde committed May 29, 2024
1 parent 45ff963 commit c85fea9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
9 changes: 3 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "meshstack Provider"
subcategory: ""
page_title: "meshStack Provider"
description: |-
Manage meshStack resources.
---

# meshstack Provider

This provider is still in its' early stages and under heavy development. It's not considered ready for production use.


## Example Usage
Expand All @@ -20,9 +20,6 @@ provider "meshstack" {
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `apikey` (String) API Key to authenticate against the meshStack API
Expand Down
27 changes: 27 additions & 0 deletions templates/index.md.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
page_title: "meshStack Provider"
description: |-
Manage meshStack resources.

---

# meshstack Provider

This provider is still in its' early stages and under heavy development. It's not considered ready for production use.


## Example Usage

```terraform
provider "meshstack" {
endpoint = "meshfed.url"
apikey = "API_KEY"
apisecret = "API_SECRET"
}
```

### Required

- `apikey` (String) API Key to authenticate against the meshStack API
- `apisecret` (String) API Secret to authenticate against the meshStack API
- `endpoint` (String) URl of meshStack API, e.g. `https://api.my.meshstack.io`

0 comments on commit c85fea9

Please sign in to comment.