gitlab_group_hook (Data Source)

The gitlab_group_hook data source allows to retrieve details about a hook in a group.

Upstream API: GitLab REST API docs

Example Usage

data "gitlab_group" "example" {
  id = "foo/bar/baz"
}

data "gitlab_group_hook" "example" {
  group   = data.gitlab_group.example.id
  hook_id = 1
}

Schema

Required

Read-Only