Port to GitHub actions & publish to Terraform registry (#39)

* Port to GitHub actions

* Fix

* Make docs terraform registry compatible
This commit is contained in:
Gavin Bunney
2021-07-14 17:47:45 -07:00
committed by GitHub
parent 4adaea3109
commit 0b0d03cda2
55 changed files with 265 additions and 7652 deletions

View File

@@ -0,0 +1,25 @@
# Resource: bitbucketserver_global_permissions_user
Set global permissions for a given user.
## Example Usage
```hcl
resource "bitbucketserver_global_permissions_user" "mreynolds" {
user = "mreynolds"
permission = "ADMIN"
}
```
## Argument Reference
* `user` - Required. Name of the user permissions are for.
* `permission` - Required. The permission to grant. Available global permissions are: `LICENSED_USER`, `PROJECT_CREATE`, `ADMIN`, `SYS_ADMIN`
## Import
Import a user global permissions via the user's name:
```
terraform import bitbucketserver_global_permissions_user.test mreynolds
```