generated from craigsloggett-lab/terraform-provider-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Update docs and regenerate (#19)
- Loading branch information
1 parent
e798b8d
commit 95cefdd
Showing
4 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Repositories can be imported using the numerical ID of the repository. | ||
# Repositories can be imported using the numerical | ||
# GitHub ID of the repository. | ||
terraform import github_repository.test 123456789 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
resource "github_repository" "example" { | ||
name = "testing-repository" | ||
name = "testing-repository" | ||
|
||
allow_auto_merge = true | ||
allow_merge_commit = true | ||
allow_rebase_merge = false | ||
allow_squash_merge = true | ||
auto_init = true | ||
delete_branch_on_merge = true | ||
description = "This is a description." | ||
homepage = "https://github.com" | ||
private = true | ||
gitignore_template = "Terraform" | ||
has_discussions = true | ||
has_issues = true | ||
has_projects = true | ||
has_wiki = true | ||
has_discussions = true | ||
auto_init = true | ||
gitignore_template = "Terraform" | ||
homepage = "https://github.com" | ||
is_template = true | ||
license_template = "mpl-2.0" | ||
allow_squash_merge = true | ||
allow_merge_commit = true | ||
allow_rebase_merge = false | ||
allow_auto_merge = true | ||
delete_branch_on_merge = true | ||
squash_merge_commit_title = "PR_TITLE" | ||
squash_merge_commit_message = "COMMIT_MESSAGES" | ||
merge_commit_title = "PR_TITLE" | ||
merge_commit_message = "PR_BODY" | ||
is_template = true | ||
merge_commit_title = "PR_TITLE" | ||
private = true | ||
squash_merge_commit_message = "COMMIT_MESSAGES" | ||
squash_merge_commit_title = "PR_TITLE" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters