Skip to content

Commit f089b53

Browse files
committed
Improve field descriptions
Signed-off-by: Timo Sand <timo.sand@f-secure.com>
1 parent d7bb4b7 commit f089b53

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

github/data_source_github_repository_pages.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func dataSourceGithubRepositoryPages() *schema.Resource {
7878
"public": {
7979
Type: schema.TypeBool,
8080
Computed: true,
81-
Description: "Whether the GitHub Pages site is public.",
81+
Description: "Whether the GitHub Pages site is publicly visible. If set to `true`, the site is accessible to anyone on the internet. If set to `false`, the site will only be accessible to users who have at least `read` access to the repository that published the site.",
8282
},
8383
},
8484
}

github/resource_github_repository_pages.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func resourceGithubRepositoryPages() *schema.Resource {
101101
Type: schema.TypeBool,
102102
Optional: true,
103103
Computed: true,
104-
Description: "Whether the GitHub Pages site is public.",
104+
Description: "Whether the GitHub Pages site is publicly visible. If set to `true`, the site is accessible to anyone on the internet. If set to `false`, the site will only be accessible to users who have at least `read` access to the repository that published the site.",
105105
},
106106
},
107107
CustomizeDiff: customdiff.All(resourceGithubRepositoryPagesDiff, diffRepository),

0 commit comments

Comments
 (0)