-
Notifications
You must be signed in to change notification settings - Fork 106
/
variables.tf
155 lines (132 loc) · 4.1 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/**
* 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 "create_subnetwork" {
type = bool
description = "Whether to create subnetwork or use the one provided via subnet_name"
default = true
}
variable "subnet_name" {
type = string
description = "Name for the subnet"
default = "gh-runner-subnet"
}
variable "repo_name" {
type = string
description = "Name of the repo for the Github Action"
default = ""
}
variable "repo_owner" {
type = string
description = "Owner of the repo for the Github Action"
}
variable "gh_runner_labels" {
type = set(string)
description = "GitHub runner labels to attach to the runners. Docs: https://docs.github.com/en/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners"
default = []
}
variable "min_replicas" {
type = number
description = "Minimum number of runner instances"
default = 2
}
variable "max_replicas" {
type = number
default = 10
description = "Maximum number of runner instances"
}
variable "gh_token" {
type = string
description = "Github token that is used for generating Self Hosted Runner Token"
}
variable "service_account" {
description = "Service account email address"
type = string
default = ""
}
variable "machine_type" {
type = string
description = "The GCP machine type to deploy"
default = "n1-standard-1"
}
variable "source_image_family" {
type = string
description = "Source image family. If neither source_image nor source_image_family is specified, defaults to the latest public Ubuntu image."
default = "ubuntu-1804-lts"
}
variable "source_image_project" {
type = string
description = "Project where the source image comes from"
default = "ubuntu-os-cloud"
}
variable "source_image" {
type = string
description = "Source disk image. If neither source_image nor source_image_family is specified, defaults to the latest public CentOS image."
default = ""
}
variable "startup_script" {
type = string
description = "User startup script to run when instances spin up"
default = ""
}
variable "shutdown_script" {
type = string
description = "User shutdown script to run when instances shutdown"
default = ""
}
variable "custom_metadata" {
type = map(any)
description = "User provided custom metadata"
default = {}
}
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
}
variable "instance_tags" {
type = list(string)
description = "Additional tags to add to the instances"
default = []
}