Moved all docs to website

This commit is contained in:
Gavin Bunney
2019-10-14 15:50:22 -07:00
parent 08d0f58674
commit 0ec65e856a
28 changed files with 601 additions and 421 deletions

View File

@@ -0,0 +1,28 @@
---
id: bitbucketserver_global_permissions_group
title: bitbucketserver_global_permissions_group
---
Set global permissions for a given group.
## Example Usage
```hcl
resource "bitbucketserver_global_permissions_group" "test" {
group = "stash-users"
permission = "ADMIN"
}
```
## Argument Reference
* `group` - Required. Name of the group permissions are for.
* `permission` - Required. The permission to grant. Available global permissions are: `LICENSED_USER`, `PROJECT_CREATE`, `ADMIN`, `SYS_ADMIN`
## Import
Import a group global permissions via the group name:
```
terraform import bitbucketserver_global_permissions_group.test my-group
```