-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
44 lines (36 loc) · 1.37 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
variable "lambda_iam_role" {
type = string
default = "gha-runner-lambda"
}
variable "subnet_name" {
default = "gha-runner"
description = "The name for the subnet used in the VPC"
}
variable "availability_zones" {
default = ["eu-west-2a", "eu-west-2b", "eu-west-2c"]
description = "The availability zones to use"
}
variable "gha_runner_security_group_name" {
default = "gha_runner"
description = "The name of the security group that GHA runner instances will launch into"
}
variable "gha_runner_image_security_group_name" {
default = "gha_runner_image_builder"
description = "The name of the security group for the instance for building the GHA runner AMI"
}
variable "gha_runner_image_builder_key_name" {
default = "gha_runner_image_builder"
description = "The name of the keypair required for building the GHA runner AMI"
}
variable "secret_github_app_id" {
default = ""
description = "The app ID for the Github self hosted runner app. Provide value from encrypted tfvars file."
}
variable "secret_github_app_private_key_base64" {
default = ""
description = "The base64-encoded private key for the Github self hosted runner app. Provide value from encrypted tfvars file."
}
variable "secret_github_app_secret" {
default = ""
description = "The secret defined on the Github self hosted runner app. Provide value from encrypted tfvars file."
}