Skip to content

Commit 22ea9fd

Browse files
committed
Update description for variables
1 parent b5e90e3 commit 22ea9fd

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

variables.tf

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ variable "vpc_security_group_ids" {
2323
variable "subnet_id" {
2424
description = "VPC Subnet ID to launch in"
2525
type = string
26-
default = ""
2726
}
2827

2928
variable "additional_tags" {
@@ -33,12 +32,12 @@ variable "additional_tags" {
3332
}
3433

3534
variable "gitlab_url" {
36-
description = "Gitlab URL"
35+
description = "URL of your Gitlab instance"
3736
type = string
3837
}
3938

4039
variable "runner_registration_token" {
41-
description = "Gitlab registration token"
40+
description = "Registration token for Gitlab Runners"
4241
type = string
4342
}
4443

@@ -49,25 +48,25 @@ variable "runner_description" {
4948
}
5049

5150
variable "runner_tags" {
52-
description = "Runner tags"
51+
description = "Tags for Gitlab Runners for filtering"
5352
type = list(string)
5453
default = ["shell", "aws"]
5554
}
5655

5756
variable "run_untagged_jobs" {
58-
description = "Run untagged jobs or not"
57+
description = "Should run untagged jobs or not"
5958
type = bool
6059
default = true
6160
}
6261

6362
variable "runner_locked" {
64-
description = "Lock the runner or not"
63+
description = "Should Lock the runners or not"
6564
type = bool
6665
default = false
6766
}
6867

6968
variable "ssh_public_key" {
70-
description = "SSH public key to use for the key pair"
69+
description = "Existing SSH public key to use for the key pair"
7170
type = string
7271
default = null
7372
}

0 commit comments

Comments
 (0)