Skip to content

Commit

Permalink
clean: remove prefix from variables, outputs description
Browse files Browse the repository at this point in the history
  • Loading branch information
KoLiBer committed Nov 2, 2022
1 parent b70c46f commit 8b2108c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
output "projects" {
value = { for key, value in var.projects : key => gitlab_project.this[key].id }
sensitive = false
description = "Gitlab Organization Projects"
description = "Organization Projects"
}

output "registry_endpoint" {
value = "registry.gitlab.com"
sensitive = false
description = "Gitlab Organization Registry Endpoint"
description = "Organization Registry Endpoint"
}

output "registry_username" {
value = gitlab_deploy_token.this.username
sensitive = true
description = "Gitlab Organization Registry Username"
description = "Organization Registry Username"
}

output "registry_password" {
value = gitlab_deploy_token.this.token
sensitive = true
description = "Gitlab Organization Registry Password"
description = "Organization Registry Password"
}
10 changes: 5 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@ variable "group_id" {
type = number
default = 0
sensitive = false
description = "Gitlab Group ID"
description = "Group ID"
}

variable "path" {
type = string
default = ""
sensitive = false
description = "Gitlab Organization Path"
description = "Organization Path"
}

variable "name" {
type = string
default = ""
sensitive = false
description = "Gitlab Organization Name"
description = "Organization Name"
}

variable "description" {
type = string
default = ""
sensitive = false
description = "Gitlab Organization Description"
description = "Organization Description"
}

variable "projects" {
Expand All @@ -33,5 +33,5 @@ variable "projects" {
}))
default = {}
sensitive = false
description = "Gitlab Organization Projects"
description = "Organization Projects"
}

0 comments on commit 8b2108c

Please sign in to comment.