-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update doc generation with templates and checked via github actions (#86
- Loading branch information
Showing
18 changed files
with
243 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
Stream Dashboards are deprecated and will be removed shortly. DO NOT USE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "lightstep_alerting_rule Resource - terraform-provider-lightstep" | ||
subcategory: "" | ||
description: |- | ||
|
||
--- | ||
|
||
# lightstep_alerting_rule (Resource) | ||
|
||
Provides a [Lightstep Alerting Rule](https://api-docs.lightstep.com/reference/listalertingrules). This can be used to create and manage Lightstep alerting rules. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "lightstep_alerting_rule" "beemo_ops_alerting_rule" { | ||
project_name = var.project | ||
condition_id = lightstep_stream_condition.beemo_ops.id | ||
destination_id = lightstep_slack_destination.slack.id | ||
update_interval = "1h" | ||
} | ||
``` | ||
|
||
{{ .SchemaMarkdown | trimspace }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "lightstep_pagerduty_destination Resource - terraform-provider-lightstep" | ||
subcategory: "" | ||
description: |- | ||
|
||
--- | ||
|
||
# lightstep_pagerduty_destination (Resource) | ||
|
||
Provides a [Lightstep PagerDuty Alert Destination](https://api-docs.lightstep.com/reference/postdestinationid). This can be used to create and manage Lightstep PagerDuty Alert Destinations. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "lightstep_pagerduty_destination" "pd" { | ||
project_name = var.project | ||
destination_name = "My Destination" | ||
integration_key = var.pd_integration_key | ||
} | ||
``` | ||
|
||
{{ .SchemaMarkdown | trimspace }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "lightstep_slack_destination Resource - terraform-provider-lightstep" | ||
subcategory: "" | ||
description: |- | ||
|
||
--- | ||
|
||
# lightstep_slack_destination (Resource) | ||
|
||
Provides a [Lightstep Slack Alert Destination](https://api-docs.lightstep.com/reference/postdestinationid). This can be used to create and manage Lightstep Slack Alert Destinations. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "lightstep_slack_destination" "slack" { | ||
project_name = var.project | ||
channel = "#urgent-care" | ||
} | ||
``` | ||
|
||
{{ .SchemaMarkdown | trimspace }} |
Oops, something went wrong.