forked from taskcluster/taskcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
110 lines (89 loc) · 2.51 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
variable "prefix" {
type = "string"
description = "Short prefix applied to all cloud resources needed for a taskcluster cluster to function. This should be different for each deployment sharing a cloud account."
}
variable "azure_region" {
type = "string"
description = "Region of azure storage"
}
variable "aws_region" {
description = "The AWS region to deploy into (e.g. us-east-1)."
}
variable "kubernetes_namespace" {
default = "taskcluster"
type = "string"
description = "Optional namespace to run services in"
}
variable "root_url" {
type = "string"
description = "Taskcluster rootUrl"
}
variable "root_url_tls_secret" {
type = "string"
description = "Name of the secret, in the same namespace as the Ingress controller, containing the TLS certificate for Taskcluster rootUrl"
}
variable "rabbitmq_hostname" {
type = "string"
description = "rabbitmq hostname"
}
variable "rabbitmq_vhost" {
type = "string"
description = "rabbitmq vhost name"
}
variable "notify_ses_arn" {
type = "string"
description = "arn of an ses address. This must be manually set up in aws."
}
variable "disabled_services" {
type = "list"
default = []
description = "List of services to disable i.e. [\"taskcluster-notify\"]"
}
variable "cluster_name" {
type = "string"
description = "Human readable cluster name"
}
variable "irc_name" {
type = "string"
description = "username for irc bot."
}
variable "irc_nick" {
type = "string"
description = "nick for irc bot."
}
variable "irc_real_name" {
type = "string"
description = "real name for irc bot."
}
variable "irc_server" {
type = "string"
description = "server for irc bot."
}
variable "irc_port" {
type = "string"
description = "port for irc bot."
}
variable "irc_password" {
type = "string"
description = "password for irc bot."
}
variable "github_app_id" {
type = "string"
description = "taskcluster-github app id."
}
variable "github_private_pem" {
type = "string"
description = "taskcluster-github private pem."
}
variable "github_webhook_secret" {
type = "string"
description = "taskcluster-github webhook secret."
}
variable "gce_provider_gcp_project" {
type = "string"
description = "Project in Google Cloud (used for gce_provider)."
}
variable "gce_provider_image_name" {
type = "string"
description = "Image name to use for workers spawned by gce_provider."
}