Skip to content

Commit b67c744

Browse files
authored
Merge pull request #35 from sparkfabrik/feature/output_gitlab_namespace
refs platform/1641: add used namespace as output
2 parents 1404bf0 + dca597f commit b67c744

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ Then perform the following commands on the root folder:
129129
| cluster\_name | Name of the GKE cluster that GitLab is deployed in. |
130130
| created\_bucket\_names | The list of the created buckets. |
131131
| gitlab\_address | IP address where you can connect to your GitLab instance |
132+
| gitlab\_namespace | The namespace where Gitlab is installed. |
132133
| gitlab\_url | URL where you can access your GitLab instance |
133134
| root\_password\_instructions | Instructions for getting the root user's password for initial setup |
134135
| service\_account\_id | The id of the default service account |

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,8 @@ output "buckets_random_suffix" {
7272
value = random_string.random_suffix.result
7373
description = "The random suffix used to have unique bucket names."
7474
}
75+
76+
output "gitlab_namespace" {
77+
value = var.gitlab_namespace
78+
description = "The namespace where Gitlab is installed."
79+
}

0 commit comments

Comments
 (0)