File tree Expand file tree Collapse file tree
website/source/docs/providers/bitbucket/r Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Provides support for setting up default reviewers for your repository.
1515```
1616# Manage your respository
1717resource "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
3030The 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.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ This allows you to manage your webhooks on a repository.
1717```
1818# Manage your respositories hooks
1919resource "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
3232The 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.
You can’t perform that action at this time.
0 commit comments