Skip to content

Commit 453ac9b

Browse files
committed
Refactor of username -> owner
1 parent 49f0c2e commit 453ac9b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

website/source/docs/providers/bitbucket/r/default_reviewers.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Provides support for setting up default reviewers for your repository.
1515
```
1616
# Manage your respository
1717
resource "bitbucket_default_reviewers" "infastracture" {
18-
username = "myteam"
18+
owner = "myteam"
1919
repository = "terraform-code"
2020
reviewers = [
2121
"gob",
@@ -29,7 +29,7 @@ resource "bitbucket_default_reviewers" "infastracture" {
2929

3030
The following arguments are supported:
3131

32-
* `username` - (Required) The owner of this repository. Can be you or any team you
32+
* `owner` - (Required) The owner of this repository. Can be you or any team you
3333
have write access to.
3434
* `repository` - (Required) The name of the repository.
3535
* `reviewers` - (Required) A list of reviewers to use.

website/source/docs/providers/bitbucket/r/hook.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This allows you to manage your webhooks on a repository.
1717
```
1818
# Manage your respositories hooks
1919
resource "bitbucket_hook" "deploy_on_push" {
20-
username = "myteam"
20+
owner = "myteam"
2121
repository = "terraform-code"
2222
url = "https://mywebhookservice.mycompany.com/deploy-on-push"
2323
description = "Deploy the code via my webhook"
@@ -31,7 +31,7 @@ resource "bitbucket_hook" "deploy_on_push" {
3131

3232
The following arguments are supported:
3333

34-
* `username` - (Required) The owner of this repository. Can be you or any team you
34+
* `owner` - (Required) The owner of this repository. Can be you or any team you
3535
have write access to.
3636
* `repository` - (Required) The name of the repository.
3737
* `url` - (Required) Where to POST to.

0 commit comments

Comments
 (0)