-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathvariables.tf
More file actions
102 lines (82 loc) · 2.69 KB
/
variables.tf
File metadata and controls
102 lines (82 loc) · 2.69 KB
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
variable "github_app_id" {
description = "The Github app ID to use for authentication"
type = string
}
variable "github_app_installation_id" {
description = "The Github app installation ID for authentication"
type = string
}
variable "github_app_private_key" {
description = "The Github app private key for authentication"
type = string
}
variable "cluster_name" {
type = string
}
variable "grafana_token" {
type = string
}
variable "externalservices_prometheus_host" {
type = string
default = "https://prometheus-prod-13-prod-us-east-0.grafana.net"
}
variable "externalservices_prometheus_basicauth_username" {
type = number
default = 1716097
}
variable "externalservices_loki_host" {
type = string
default = "https://logs-prod-006.grafana.net"
}
variable "externalservices_loki_basicauth_username" {
type = number
default = 957850
}
variable "externalservices_tempo_host" {
type = string
default = "https://tempo-prod-04-prod-us-east-0.grafana.net:443"
}
variable "externalservices_tempo_basicauth_username" {
type = number
default = 952165
}
variable "runner_group_name" {
type = string
}
variable "libcxx_runner_image" {
type = string
default = "ghcr.io/llvm/libcxx-linux-builder:16f046281bf1a11d344eac1bc44d11f3e50e3b5d"
}
variable "libcxx_release_runner_image" {
type = string
default = "ghcr.io/llvm/libcxx-linux-builder:16f046281bf1a11d344eac1bc44d11f3e50e3b5d"
}
# Same value as libcxx_runner_image at this time.
variable "libcxx_next_runner_image" {
type = string
default = "ghcr.io/llvm/libcxx-linux-builder:16f046281bf1a11d344eac1bc44d11f3e50e3b5d"
}
variable "linux_runners_namespace_name" {
description = "The name of the namespace containing the Linux runners"
type = string
}
variable "linux_runners_kubernetes_service_account_name" {
description = "The name of the kubernetes service account used to access the Linux object cache GCS bucket"
type = string
}
variable "windows_2022_runners_namespace_name" {
description = "The name of the namespace containing the Windows runners"
type = string
}
variable "windows_2022_runners_kubernetes_service_account_name" {
description = "The name of the kubernetes service account used to access the Windows object cache GCS bucket"
type = string
}
variable "linux_object_cache_gcp_service_account_email" {
description = "The email associated with the service account for accessing the object cache on Linux."
type = string
}
variable "windows_2022_object_cache_gcp_service_account_email" {
description = "The email associated with the service account for accessing the object cache on Windows."
type = string
}