forked from Developer-DAO/ario-gateway-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
65 lines (53 loc) · 1.23 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
variable "alias" {
type = string
description = "The alias of the environment"
}
variable "region" {
type = string
description = "The region"
}
variable "account_id" {
type = string
description = "The account id"
}
variable "use_vercel_domains" {
type = string
description = "Use Vercel for domain management."
}
variable "domain_name" {
type = string
description = "The domain name"
}
variable "subdomain_name" {
type = string
description = "The subdomain name"
}
variable "graphql_ip_allow_list" {
type = list(string)
description = "List of IP's not to rate limit on /graphql endpoint"
default = []
}
variable "public_subnets" {
type = list(any)
description = "List of private subnets"
}
variable "private_subnets" {
type = list(any)
description = "List of private subnets"
}
variable "vpc_id" {
type = string
description = "The id of the vpc"
}
variable "vpc_cidr" {
type = string
description = "The cidr of the vpc"
}
variable "instance_type" {
type = string
description = "The instance type"
}
variable "observer_key" {
type = string
description = "Used to submit observer reports to Arweave"
}