terraform-provider-github icon indicating copy to clipboard operation
terraform-provider-github copied to clipboard

Terraform GitHub provider

Results 510 terraform-provider-github issues
Sort by recently updated
recently updated
newest added

### Expected Behavior We recently switched from using `github_team_repository` and `github_repository_collaborator` to `github_repository_collaborators`, because we wanted to have authoritative management of collaborators. We also expected that this would bring us...

Type: Bug
Status: Up for grabs

Resolves #1974 ---- ### Before the change? * The `github_repository_environment_deployment_policy` only supported branch-based policies even though the [GitHub API](https://docs.github.com/en/rest/deployments/branch-policies?apiVersion=2022-11-28#create-a-deployment-branch-policy) has support for both branch-based and tag-based policies. ### After the...

I would like to be able to have the default merge action for a repo created with `github_repository` have a default merge action that is configurable. By default I want...

Type: Feature
Status: Up for grabs

### Expected Behavior A GitHub repository is created with a project according to the following Terraform configuration: ``` resource "github_repository" "main" { name = local.repository_name visibility = "private" has_issues =...

Type: Bug
Status: Up for grabs
Type: Support

Resolves #1482 This adds a new resource `github_enterprise_actions_runner_group` to control runner groups at the enterprise level. Additional attribute `database_id` added to `data.github_enterprise` and `resource.github_enterprise_organization`. The `id` fields on these two...

### Expected Behavior I expect to get the whole response in the "body" of the terraform data source. ### Actual Behavior I sometimes get a partial result, sometimes null. I...

Type: Bug
Status: Up for grabs

### Expected Behavior github_branch_protection should fully manage all options available under "Branch protection rule" GUI settings. ### Actual Behavior No code options appear to manage the top level "Require a...

Type: Bug
Status: Up for grabs

### Terraform Version 0.14.1 ### Affected Resource(s) - `github_team_repository` ### Terraform Configuration Files ```hcl # root module main.tf terraform { required_version = "= 0.14.1" backend "s3" { bucket = "terraform-snd"...

Type: Bug
Status: Up for grabs
Provider
hacktoberfest

### Expected Behavior When I run a `terraform plan` for `github_repository` resources, which have `allow_squash_merge` set to `false`, I should not see any values for `squash_merge_commit_message` and `squash_merge_commit_title`. ### Actual...

Type: Bug
Status: Up for grabs

Resolves #2101 ---- ### Before the change? * Currently [repository_file](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file) does not support automatic creation of branches. This means in order manage files via pull requests (rather than directly pushing...