Added initial docs page skeleton

This commit is contained in:
Gavin Bunney
2019-10-14 12:56:04 -07:00
parent 6e0f2f87e7
commit 8e832185b0
16 changed files with 7150 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
id: data_application_properties
title: bitbucketserver_application_properties
---
This data source allows you to retrieve version information and other application properties of Bitbucket Server.
## Example Usage
```
data "bitbucketserver_application_properties" "main" { }
```
## Attribute Reference
* `version` - Version of Bitbucket.
* `build_number` - Build number of the Bitbucket instance.
* `build_date` - Date the Bitbucket build was made,
* `display_name` - Name of the Bitbucket instance.

51
docusaurus/docs/provider.md Executable file
View File

@@ -0,0 +1,51 @@
---
id: provider
title: Getting Started
---
[Bitbucket Server](https://www.atlassian.com/software/bitbucket) is the self-hosted version of Bitbucket.
Whilst terraform provides a default bitbucket provider, this only works for _Bitbucket Cloud_ - this provider
unlocks the power of terraform to manage your self-hosted Bitbucket Server instance.
## Provider Installation
Download a binary for your system from the [release page](https://github.com/gavinbunney/terraform-provider-bitbucketserver/releases) and remove the `-os-arch` details so you're left with `terraform-provider-bitbucketserver`.
Use `chmod +x` to make it executable and then either place it at the root of your Terraform folder or in the Terraform plugin folder on your system.
## Provider Configuration
The provider supports parameters to determine the bitbucket server and admin user/password to use.
```hcl
provider "bitbucketserver" {
server = "https://mybitbucket.example.com"
username = "admin"
password = "password"
}
```
You can also specify these parameters through the `BITBUCKET_SERVER`, `BITBUCKER_USERNAME` and `BITBUCKET_PASSWORD` environment variables.
## Creating a Project and Repository
Creating a project and repository is super simple with this provider:
```hcl
provider "bitbucketserver" {
server = "https://mybitbucket.example.com"
username = "admin"
password = "password"
}
resource "bitbucketserver_project" "test" {
key = "TEST"
name = "test-01"
description = "Test project"
}
resource "bitbucketserver_repository" "test" {
project = bitbucketserver_project.test.key
name = "test-01"
description = "Test repository"
}
```