Files
gitlab-group/output.tf
2025-11-01 23:37:52 +01:00

15 lines
322 B
HCL

output "full_path" {
description = "Full path in gitlab for created group"
value = gitlab_group.group.full_path
}
output "id" {
description = "ID of created group"
value = gitlab_group.group.id
}
output "group_name" {
description = "Name of created group"
value = gitlab_group.group.name
}