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_banner
Manage the announcement banner, updating as required.
## Example Usage
```hcl
resource "bitbucketserver_banner" "main" {
message = "Bitbucket is down for maintenance\n*Save your work*"
}
```
## Argument Reference
* `message` - Required. Information to display to the user. Markdown supported.
* `enabled` - Optional. Turn the announcement banner on/off. Default `true`.
* `audience` - Optional. Set the audience for the announcement. Must be one of `ALL` or `AUTHENTICATED`. Default `ALL`.
## Import
Import the banner:
```
terraform import bitbucketserver_banner.main banner
```