-
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.
feat: update so client to use api v3; add support for stack overflow …
…enterprise; add tag and collection support (#11) BREAKING CHANGE: stackoverflow_filter has been removed; provider configurations for default tags and team have been removed
- Loading branch information
1 parent
9e5ecf0
commit 67c6616
Showing
47 changed files
with
962 additions
and
1,274 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "stackoverflow_collection Data Source - terraform-provider-stackoverflow" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# stackoverflow_collection (Data Source) | ||
|
||
The `collection` data source allows for referencing an existing collection in Stack Overflow. | ||
|
||
``` | ||
data "stackoverflow_collection" "collection" { | ||
collection_id = 1 | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `collection_id` (Number) The identifier for the collection | ||
|
||
### Read-Only | ||
|
||
- `description` (String) The collection description | ||
- `title` (String) The collection name | ||
|
||
|
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
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,34 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "stackoverflow_tag Data Source - terraform-provider-stackoverflow" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# stackoverflow_tag (Data Source) | ||
|
||
The `tag` data source allows for referencing an existing tag in Stack Overflow. | ||
|
||
## Example | ||
|
||
``` | ||
data "stackoverflow_tag" "tag" { | ||
tag_id = 1 | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `tag_id` (Number) The identifier for the tag | ||
|
||
### Read-Only | ||
|
||
- `description` (String) The tag description | ||
- `id` (String) The ID of this resource. | ||
- `name` (String) The tag name | ||
|
||
|
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
Oops, something went wrong.