Skip to content
This repository has been archived by the owner on Jan 8, 2021. It is now read-only.

Commit

Permalink
change private to visibility (integrations#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 authored Jan 7, 2021
1 parent 2e5e268 commit 3862f96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/repository_collaborator/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "github_repository" "collaboration" {
name = "collaboration"
private = true
visibility = "private"
description = "A collaborative repository"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/repository_delete_branch_on_merge/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ resource "github_repository" "delete_branch_on_merge" {
name = "delete_branch_on_merge"
description = "A repository with delete-branch-on-merge configured"
default_branch = "main"
private = true
visibility = "private"
delete_branch_on_merge = true
}
2 changes: 1 addition & 1 deletion website/docs/r/branch_default.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "github_repository" "example" {
name = "example"
description = "My awesome codebase"
private = true
visibility = "private"
template {
owner = "github"
Expand Down

0 comments on commit 3862f96

Please sign in to comment.