Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/docs/r/app_installation_repositories.html.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: "github"
page_title: "GitHub: github_app_installation_repository"
page_title: "GitHub: github_app_installation_repositories"
description: |-
Manages the associations between app installations and repositories.
---
Expand Down Expand Up @@ -33,8 +33,8 @@ resource "github_repository" "another_repo" {

resource "github_app_installation_repositories" "some_app_repos" {
# The installation id of the app (in the organization).
installation_id = "1234567"
selected_repositories = [github_repository.some_repo.name, github_repository.another_repo.name]"
installation_id = "1234567"
selected_repositories = [github_repository.some_repo.name, github_repository.another_repo.name]
}
```

Expand Down