generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial ds and provider setup * additional cleanup * check w.write * declare + assign * add test for 1.5 and add ID for tf1.0? * regenerate docs
- Loading branch information
Showing
22 changed files
with
554 additions
and
508 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "theoffice_quotes Data Source - terraform-provider-theoffice" | ||
subcategory: "" | ||
description: |- | ||
Fetches a list of quotes | ||
--- | ||
|
||
# theoffice_quotes (Data Source) | ||
|
||
Fetches a list of quotes | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "theoffice_quotes" "example" { | ||
season = 1 | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `season` (Number) Season number to filter results by | ||
|
||
### Optional | ||
|
||
- `episode` (Number) Episode number to filter results by | ||
|
||
### Read-Only | ||
|
||
- `id` (String) Placeholder identifier attribute. | ||
- `quotes` (Attributes List) List of quotes (see [below for nested schema](#nestedatt--quotes)) | ||
|
||
<a id="nestedatt--quotes"></a> | ||
### Nested Schema for `quotes` | ||
|
||
Read-Only: | ||
|
||
- `character` (String) The character who said the quote. | ||
- `episode` (Number) The episode the quote occurred in. | ||
- `episode_name` (String) The name of the episode the quote occurred in. | ||
- `quote` (String) The quote as a string | ||
- `scene` (Number) The scene the quote occurred in. | ||
- `season` (Number) The season the quote occurred in. |
This file was deleted.
Oops, something went wrong.
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,26 +1,24 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "scaffolding-framework Provider" | ||
page_title: "theoffice Provider" | ||
subcategory: "" | ||
description: |- | ||
Interact with theOffice API | ||
--- | ||
|
||
# scaffolding-framework Provider | ||
|
||
# theoffice Provider | ||
|
||
Interact with theOffice API | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
provider "scaffolding" { | ||
# example configuration here | ||
} | ||
provider "theoffice" {} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `endpoint` (String) Example provider attribute | ||
- `endpoint` (String) The REST API endpoint to use for reading data (default: http://theofficeapi-angelinepinilla.b4a.run) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
data "theoffice_quotes" "example" { | ||
season = 1 | ||
} |
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,3 +1 @@ | ||
provider "scaffolding" { | ||
# example configuration here | ||
} | ||
provider "theoffice" {} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.