Skip to content

Commit 683696a

Browse files
petarnikolovskitechknowlogick
andcommitted
Add repository webhook resource (#28)
Co-authored-by: techknowlogick <[email protected]> Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/28 Reviewed-by: techknowlogick <[email protected]> Co-authored-by: Petar Nikolovski <[email protected]> Co-committed-by: Petar Nikolovski <[email protected]>
1 parent f59aab3 commit 683696a

18 files changed

+290
-38
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.vscode
2-
dist/
2+
.idea/
3+
dist/

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ terraform {
1313
required_providers {
1414
gitea = {
1515
source = "go-gitea/gitea"
16-
version = "0.2.0"
16+
version = "0.3.0"
1717
}
1818
}
1919
}
@@ -71,4 +71,3 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
7171
## History
7272

7373
This codebase was created at https://gitea.com/gitea/terraform-provider-gitea, was forked by @lerentis, and then their changes were merged back into the original repo. Thank you to everyone who contributed!
74-

docs/data-sources/org.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,3 @@ description: |-
2828
- `location` (String)
2929
- `visibility` (String)
3030
- `website` (String)
31-
32-

docs/data-sources/repo.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,3 @@ description: |-
4343
- `updated` (String)
4444
- `watchers` (Number)
4545
- `website` (String)
46-
47-

docs/data-sources/user.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,3 @@ description: |-
2929
- `is_admin` (Boolean)
3030
- `language` (String)
3131
- `last_login` (String)
32-
33-

docs/resources/fork.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,3 @@ resource "gitea_fork" "org2_fork_of_repo1_in_org1" {
5757
### Read-Only
5858

5959
- `id` (String) The ID of this resource.
60-
61-

docs/resources/git_hook.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,3 @@ resource "gitea_git_hook" "org_repo_post_receive" {
5151
### Read-Only
5252

5353
- `id` (String) The ID of this resource.
54-
55-

docs/resources/oauth2_app.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,3 @@ Handling [gitea oauth application](https://docs.gitea.io/en-us/oauth2-provider/)
2929
- `client_id` (String) OAuth2 Application client id
3030
- `client_secret` (String, Sensitive) Oauth2 Application client secret
3131
- `id` (String) The ID of this resource.
32-
33-

docs/resources/org.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,3 @@ resource "gitea_repository" "org_repo" {
4747
- `avatar_url` (String)
4848
- `id` (String) The ID of this resource.
4949
- `repos` (List of String) List of all Repositories that are part of this organisation
50-
51-

docs/resources/public_key.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,3 @@ resource "gitea_public_key" "test_user_key" {
4848
- `fingerprint` (String)
4949
- `id` (String) The ID of this resource.
5050
- `type` (String)
51-
52-

0 commit comments

Comments
 (0)