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_user_group
Assign a User to an existing Bitbucket Group.
## Example Usage
```hcl
resource "bitbucketserver_user_group" "browncoat" {
user = "mreynolds"
group = "browncoats"
}
```
## Argument Reference
* `user` - Required. User to assign group to.
* `group` - Required. Group to assign to the user.
## Import
Import a user group reference via the user and group keys:
```
terraform import bitbucketserver_user_group.browncoat mreynolds/browncoats
```