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_plugin_config
Configure plugins.
## Example Usage
```hcl
resource "bitbucketserver_plugin_config" "mypluginconfig" {
config_endpoint = "/rest/1.0/myplugin/config"
values = "{"\key\": \"value\"}"
}
```
## Argument Reference
* `config_endpoint` - Required. Path to the configuration endpoint. Relative to the bitbucket server url configured in the provider.
* `values` - Required. Plugin configuration in JSON format.
## Import
Import a plugin config reference via the key:
```
terraform import bitbucketserver_plugin_config.mypluginkey my-plugin-key
```