Skip to content

Commit

Permalink
fix: add missing docs from GitHub to Terraform registry docs (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
fancybear-dev committed Jun 12, 2024
1 parent 6cbc3ef commit b8d5b41
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ terraform {
required_version = ">= 0.13"
required_providers {
betteruptime = {
source = "BetterStackHQ/better-uptime"
# https://github.com/BetterStackHQ/terraform-provider-better-uptime/blob/master/CHANGELOG.md
version = ">= 0.2.4"
source = "BetterStackHQ/better-uptime"
version = ">= 0.9.3"
}
}
}
Expand Down
14 changes: 14 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ description: |-

The Better Uptime provider provides resources to interact with the [Better Uptime API](https://betterstack.com/docs/uptime/api/getting-started-with-uptime-api/).

## Installation

```terraform
terraform {
required_version = ">= 0.13"
required_providers {
betteruptime = {
source = "BetterStackHQ/better-uptime"
version = ">= 0.9.3"
}
}
}
```

## Example Usage

```terraform
Expand Down
14 changes: 14 additions & 0 deletions templates/index.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ description: |-

The Better Uptime provider provides resources to interact with the [Better Uptime API](https://betterstack.com/docs/uptime/api/getting-started-with-uptime-api/).

## Installation

```terraform
terraform {
required_version = ">= 0.13"
required_providers {
betteruptime = {
source = "BetterStackHQ/better-uptime"
version = ">= 0.9.3"
}
}
}
```

## Example Usage

```terraform
Expand Down

0 comments on commit b8d5b41

Please sign in to comment.