chore: defaults

This commit is contained in:
2025-11-01 23:32:29 +01:00
parent 4ab78f9af9
commit a281039ae7
9 changed files with 550 additions and 10 deletions

13
data.tf
View File

@@ -1 +1,12 @@
//Data
data "gitlab_group" "parent" {
full_path = var.parent_group
}
data "gitlab_group" "token_scope_groups" {
for_each = toset(var.token_scope_groups)
full_path = each.key
}
data "gitlab_project" "token_scope_projects" {
for_each = toset(var.token_scope_repositories)
path_with_namespace = each.key
}