-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
233e5b9
commit 619082b
Showing
3 changed files
with
29 additions
and
3 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
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: "observe_ingest_info Data Source - terraform-provider-observe" | ||
subcategory: "" | ||
description: |- | ||
Ingest info for the Observe tenant. | ||
--- | ||
|
||
# observe_ingest_info (Data Source) | ||
|
||
Ingest info for the Observe tenant. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `collect_url` (String) Base URL for the Observe ingest API. | ||
- `domain` (String) Base domain for the Observe ingest API. | ||
- `id` (String) The ID of this resource. | ||
- `port` (String) Port over which data should be sent. If omitted, assume scheme defaults. | ||
- `scheme` (String) URI scheme for ingesting data. |
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
data "observe_folder" "example" { | ||
name = "OpenWeather" | ||
workspace = data.observe_workspace.default | ||
name = "OpenWeather" | ||
} | ||
|
||
data "observe_app" "example" { | ||
folder = data.observe_folder.example.oid | ||
name = "OpenWeather" | ||
} | ||
} |