terraform-provider-github
terraform-provider-github copied to clipboard
Terraform GitHub provider
Based on the current GitHub UI, this is the list of missing features and their statuses - [x] As Template Repo #357 - [x] Automatically delete head branches #399 -...
## Affected Resource(s) - resource_github_team_repository ## Expected Behavior After creating a resource_github_team_repository with a custom role set in the permission field, making no changes, and re-running the plan, I expect...
This is now available in the GitHub API here: https://docs.github.com/en/rest/actions/permissions#set-default-workflow-permissions-for-a-repository Relates to #1265
This is now supported in the GitHub API here: https://docs.github.com/en/rest/actions/permissions#set-default-workflow-permissions-for-an-organization Relates to #1200
### Terraform Version Run `terraform -v` to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed....
Repository argument is required but in the examples is missing
Let's talk about teams. ```hcl resource "github_team" "parent" { name = "Team Parent" privacy = "closed" } resource "github_team" "child_a" { name = "Child A" parent_team_id = github_team.parent.id privacy =...
This is happening on existing resources that are imported in to Terraform. I haven't confirmed, but am guessing if they were new I would not see this behavior. Terraform continuously...
### Terraform Version v0.10.2 ### Affected Resource(s) github_repository ### Terraform Configuration Files ```hcl resource "github_repository" "example" { name = "example-rename" # Change this } ``` ### Expected Behavior The repository...
I am looking for a way to manage my Github Classrooms. Currently, it is a lot of clicking to create classrooms with the same organization. I think this would be...