mirror of
https://github.com/ysoftdevs/terraform-provider-bitbucketserver.git
synced 2026-03-25 10:51:15 +01:00
Added resource bitbucketserver_project_hook and cleaned up delete handling of permission resources
This commit is contained in:
21
docusaurus/docs/resource_project_hook.md
Normal file
21
docusaurus/docs/resource_project_hook.md
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
id: bitbucketserver_project_hook
|
||||
title: bitbucketserver_project_hook
|
||||
---
|
||||
|
||||
Manage a project level hook. Extends what Bitbucket does every time a repository changes, for example when code is pushed or a pull request is merged.
|
||||
|
||||
## Example Usage
|
||||
|
||||
```hcl
|
||||
resource "bitbucketserver_project_hook" "main" {
|
||||
project = "MYPROJ"
|
||||
hook = "com.atlassian.bitbucket.server.bitbucket-bundled-hooks:force-push-hook"
|
||||
}
|
||||
```
|
||||
|
||||
## Argument Reference
|
||||
|
||||
* `project` - Required. Project Key the hook to enable is for.
|
||||
* `hook` - Required. The hook to enable on the project.
|
||||
* `settings` - Optional. Map of values to apply as settings for the hook. Contents dependant on the individual hook settings.
|
||||
@@ -64,6 +64,9 @@
|
||||
"bitbucketserver_plugin": {
|
||||
"title": "bitbucketserver_plugin"
|
||||
},
|
||||
"bitbucketserver_project_hook": {
|
||||
"title": "bitbucketserver_project_hook"
|
||||
},
|
||||
"bitbucketserver_project_permissions_group": {
|
||||
"title": "bitbucketserver_project_permissions_group"
|
||||
},
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
"bitbucketserver_mail_server",
|
||||
"bitbucketserver_plugin",
|
||||
"bitbucketserver_project",
|
||||
"bitbucketserver_project_hook",
|
||||
"bitbucketserver_project_permissions_group",
|
||||
"bitbucketserver_project_permissions_user",
|
||||
"bitbucketserver_repository",
|
||||
|
||||
Reference in New Issue
Block a user