-
Notifications
You must be signed in to change notification settings - Fork 105
/
variables.tf
121 lines (104 loc) · 3.01 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
variable "project_id" {
type = string
description = "The project id to deploy Github Runner"
}
variable "region" {
type = string
description = "The GCP region to deploy instances into"
default = "us-east4"
}
variable "network_name" {
type = string
description = "Name for the VPC network"
default = "gh-runner-network"
}
variable "create_network" {
type = bool
description = "When set to true, VPC,router and NAT will be auto created"
default = true
}
variable "subnetwork_project" {
type = string
description = "The ID of the project in which the subnetwork belongs. If it is not provided, the project_id is used."
default = ""
}
variable "subnet_ip" {
type = string
description = "IP range for the subnet"
default = "10.10.10.0/24"
}
variable "subnet_name" {
type = string
description = "Name for the subnet"
default = "gh-runner-subnet"
}
variable "restart_policy" {
type = string
description = "The desired Docker restart policy for the runner image"
default = "Always"
}
variable "image" {
type = string
description = "The github runner image"
}
variable "repo_url" {
type = string
description = "Repo URL for the Github Action"
}
variable "repo_name" {
type = string
description = "Name of the repo for the Github Action"
}
variable "repo_owner" {
type = string
description = "Owner of the repo for the Github Action"
}
variable "gh_token" {
type = string
description = "Github token that is used for generating Self Hosted Runner Token"
}
variable "instance_name" {
type = string
description = "The gce instance name"
default = "gh-runner"
}
variable "target_size" {
type = number
description = "The number of runner instances"
default = 2
}
variable "service_account" {
description = "Service account email address"
type = string
default = ""
}
variable "additional_metadata" {
type = map(any)
description = "Additional metadata to attach to the instance"
default = {}
}
variable "dind" {
type = bool
description = "Flag to determine whether to expose dockersock "
default = false
}
variable "cooldown_period" {
description = "The number of seconds that the autoscaler should wait before it starts collecting information from a new instance."
type = number
default = 60
}