-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
76 lines (66 loc) · 2.3 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
variable "google_project_id" {}
variable "google_region" {}
variable "google_billing_account_id" {}
variable "google_monthly_budget_usd" {}
variable "mongodb_atlas_project_id" {}
variable "mongodb_atlas_region" {}
variable "mongodb_monthly_budget_usd" {}
variable "sre_iam_uri" {
description = "GCP IAM URI for an SRE or the SRE group (e.g., 'group:[email protected]')"
}
variable "sre_email_addresses" {
description = "Email address for each SRE at Relaycorp"
type = list(string)
}
variable "superadmin_email_address" {
description = "Email address for the superadmin"
}
# ===== Letro
variable "letro_docker_image_name" {
description = "The Docker image name for the Letro server"
default = "relaycorp/letro"
}
variable "letro_docker_image_tag" {
description = "The Docker image tag for the Letro server"
}
variable "letro_log_level" {
description = "The log level for the Letro server"
default = "info"
}
variable "letro_max_instance_request_concurrency" {
description = "The maximum number of concurrent requests per instance"
default = 100
}
variable "letro_min_instance_count" {
description = "The minimum number of Letro instances"
}
variable "letro_max_instance_count" {
description = "The maximum number of Letro instances"
}
# ===== VeraId Authority
variable "veraid_authority_docker_image_tag" {
description = "The Docker image tag for the VeraId Authority"
}
variable "veraid_authority_api_auth_audience" {
description = "The OAuth2 audience"
type = string
}
variable "veraid_authority_awala_backend_min_instance_count" {
description = "The minimum number of Awala backend instances from VeraId Authority"
}
variable "veraid_authority_queue_min_instance_count" {
description = "The minimum number of queue instances from VeraId Authority"
}
# ===== Awala Internet Endpoint
variable "awala_endpoint_docker_image_tag" {
description = "The Docker image tag for the Awala Internet Endpoint"
}
variable "awala_endpoint_internet_address" {
description = "The Internet address for the Awala Internet Endpoint"
}
variable "awala_endpoint_pohttp_domain" {
description = "The domain name for the PoHTTP server in the Awala Internet Endpoint"
}
variable "awala_endpoint_client_min_instance_count" {
description = "The minimum number of Awala Internet Endpoint client instances"
}