-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
98 lines (82 loc) · 2.28 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
variable "environment" {
type = string
validation {
condition = contains(["production", "staging", "development"], var.environment)
error_message = "Allowed values for env are \"production\", \"staging\" or \"development\"."
}
}
variable "region" {
description = "Region where to deploy resources."
type = string
default = "eu-west-1"
}
variable "bastion_public_key" {
description = "Public SSH key used to connect to the bastion."
type = string
}
variable "root_domain" {
description = "Root domain name."
type = string
}
variable "email_domain" {
description = "[optional] Email domain name, defaults to the root domain name."
type = string
default = null
}
variable "email_contact" {
description = "Email address where users can contact us."
type = string
default = null
}
variable "create_iam_service_linked_role" {
description = "Whether to create `AWSServiceRoleForECS` service-linked role. Set it to `false` if you already have an ECS cluster created in the AWS account and AWSServiceRoleForECS already exists."
type = bool
default = false
}
variable "ngohub_hmac_api_key" {
type = string
sensitive = true
}
variable "ngohub_hmac_secret_key" {
type = string
sensitive = true
}
variable "ngohub_hmac_encryption_key" {
type = string
sensitive = true
}
variable "github_access_token" {
type = string
sensitive = true
}
variable "expo_push_notifications_access_token" {
type = string
sensitive = true
}
variable "vic_facebook_provider_client_id" {
description = "Facebook provider client id"
type = string
default = null
}
variable "vic_facebook_provider_client_secret" {
description = "Facebook provider client secret"
type = string
default = null
sensitive = true
}
variable "vic_google_provider_client_id" {
description = "Google provider client id"
type = string
default = null
}
variable "vic_google_provider_client_secret" {
description = "Google provider client secret"
type = string
default = null
sensitive = true
}
variable "ngohub_landing_url" {
description = "URL to the landing page of the NGOHub (the one with Website Factory)."
type = string
default = null
}