Refactor of username -> owner

This commit is contained in:
Colin Wood 2016-09-09 12:13:45 -07:00
parent 49f0c2e917
commit 453ac9bb3d
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ Provides support for setting up default reviewers for your repository.
```
# Manage your respository
resource "bitbucket_default_reviewers" "infastracture" {
username = "myteam"
owner = "myteam"
repository = "terraform-code"
reviewers = [
"gob",
@ -29,7 +29,7 @@ resource "bitbucket_default_reviewers" "infastracture" {
The following arguments are supported:
* `username` - (Required) The owner of this repository. Can be you or any team you
* `owner` - (Required) The owner of this repository. Can be you or any team you
have write access to.
* `repository` - (Required) The name of the repository.
* `reviewers` - (Required) A list of reviewers to use.

View File

@ -17,7 +17,7 @@ This allows you to manage your webhooks on a repository.
```
# Manage your respositories hooks
resource "bitbucket_hook" "deploy_on_push" {
username = "myteam"
owner = "myteam"
repository = "terraform-code"
url = "https://mywebhookservice.mycompany.com/deploy-on-push"
description = "Deploy the code via my webhook"
@ -31,7 +31,7 @@ resource "bitbucket_hook" "deploy_on_push" {
The following arguments are supported:
* `username` - (Required) The owner of this repository. Can be you or any team you
* `owner` - (Required) The owner of this repository. Can be you or any team you
have write access to.
* `repository` - (Required) The name of the repository.
* `url` - (Required) Where to POST to.