provider/bitbucket: Making the necessary documentation changes for the bitbucket typos
This commit is contained in:
parent
a2970e631c
commit
2813790dd9
|
@ -3,7 +3,7 @@ layout: "bitbucket"
|
|||
page_title: "Provider: Bitbucket"
|
||||
sidebar_current: "docs-bitbucket-index"
|
||||
description: |-
|
||||
The Bitbucket proivder to interact with repositories, projects, etc..
|
||||
The Bitbucket provider to interact with repositories, projects, etc..
|
||||
---
|
||||
|
||||
# Bitbucket Provider
|
||||
|
@ -37,5 +37,5 @@ The following arguments are supported in the `provider` block:
|
|||
* `username` - (Required) Your username used to connect to bitbucket. You can
|
||||
also set this via the environment variable. `BITBUCKET_USERNAME`
|
||||
|
||||
* `username` - (Required) Your passowrd used to connect to bitbucket. You can
|
||||
* `password` - (Required) Your password used to connect to bitbucket. You can
|
||||
also set this via the environment variable. `BITBUCKET_PASSWORD`
|
||||
|
|
|
@ -14,7 +14,7 @@ Provides support for setting up default reviewers for your repository.
|
|||
|
||||
```
|
||||
# Manage your respository
|
||||
resource "bitbucket_default_reviewers" "infastracture" {
|
||||
resource "bitbucket_default_reviewers" "infrastructure" {
|
||||
owner = "myteam"
|
||||
repository = "terraform-code"
|
||||
reviewers = [
|
||||
|
|
|
@ -17,7 +17,7 @@ private, how to fork the repository and other options.
|
|||
|
||||
```
|
||||
# Manage your respository
|
||||
resource "bitbucket_repository" "infastracture" {
|
||||
resource "bitbucket_repository" "infrastructure" {
|
||||
owner = "myteam"
|
||||
name = "terraform-code"
|
||||
}
|
||||
|
@ -32,8 +32,8 @@ The following arguments are supported:
|
|||
* `name` - (Optional) The name of the repository.
|
||||
* `scm` - (Optional) What SCM you want to use. Valid options are hg or git.
|
||||
Defaults to git.
|
||||
* `is_private` - (Optional) If this should be private or not. Defaults to true.
|
||||
* `website` - (Optional) What the website is for this repository.
|
||||
* `is_private` - (Optional) If this should be private or not. Defaults to `true`.
|
||||
* `website` - (Optional) URL of website associated with this repository.
|
||||
* `has_issues` - (Optional) If this should have issues turned on or not.
|
||||
* `has_wiki` - (Optional) If this should have wiki turned on or not.
|
||||
* `project_key` - (Optional) If you want to have this repo associated with a
|
||||
|
|
Loading…
Reference in New Issue