From b04da14c631275469b7874377c1f06cb877f1d3a Mon Sep 17 00:00:00 2001 From: ViacheslavKudinov Date: Wed, 18 Mar 2026 13:13:35 +0100 Subject: [PATCH] doc: Fixed usage example for github_app_installation_repositories Signed-off-by: ViacheslavKudinov --- website/docs/r/app_installation_repositories.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/r/app_installation_repositories.html.markdown b/website/docs/r/app_installation_repositories.html.markdown index 18132bb544..0407a85da4 100644 --- a/website/docs/r/app_installation_repositories.html.markdown +++ b/website/docs/r/app_installation_repositories.html.markdown @@ -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. --- @@ -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] } ```