gitlab-group/data.tf

5 lines
109 B
HCL

data "gitlab_group" "parent" {
count = var.parent_group != "" ? 1 : 0
full_path = var.parent_group
}