github_actions_runner_group

This resource allows you to create and manage GitHub Actions runner groups within your GitHub enterprise organizations. You must have admin access to an organization to use this resource.

Example Usage

resource "github_repository" "example" {
  name = "my-repository"
}

resource "github_actions_runner_group" "example" {
  name                    = github_repository.example.name
  visibility              = "selected"
  selected_repository_ids = [github_repository.example.repo_id]
}

Argument Reference

The following arguments are supported:

Attributes Reference

Import

This resource can be imported using the ID of the runner group:

$ terraform import github_actions_runner_group.test 7