-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocals.tf
140 lines (138 loc) · 3.54 KB
/
locals.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
locals {
# You'll either need to create a project with this name, or just update this
# to be the same name as the project you created.
project_name = "veilid-nodes"
# uncomment the region(s) where you want to set up a veilid node
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# !!!!!ONLY ONE OF THESE WILL BE FREE!!!!!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
free_regions = [
# Iowa
# "us-central1-a",
# "us-central1-b",
# "us-central1-c",
# "us-central1-f",
# Oregon
# "us-west1-a",
# "us-west1-b",
"us-west1-c",
# South Carolina
# "us-east1-b",
# "us-east1-c",
# "us-east1-d",
]
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# !!!!!THESE ARE NOT COVERED BY THE FREE TIER!!!!!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# uncomment the region(s) where you want to start up a veilid node
not_free_regions = [
# "asia-east1-a",
# "asia-east1-b",
# "asia-east1-c",
# "asia-east2-a",
# "asia-east2-b",
# "asia-east2-c",
# "asia-northeast1-a",
# "asia-northeast1-b",
# "asia-northeast1-c",
# "asia-northeast2-a",
# "asia-northeast2-b",
# "asia-northeast2-c",
# "asia-northeast3-a",
# "asia-northeast3-b",
# "asia-northeast3-c",
# "asia-south1-a",
# "asia-south1-b",
# "asia-south1-c",
# "asia-south2-a",
# "asia-south2-b",
# "asia-south2-c",
# "asia-southeast1-a",
# "asia-southeast1-b",
# "asia-southeast1-c",
# "asia-southeast2-a",
# "asia-southeast2-b",
# "asia-southeast2-c",
# "australia-southeast1-a",
# "australia-southeast1-b",
# "australia-southeast1-c",
# "australia-southeast2-a",
# "australia-southeast2-b",
# "australia-southeast2-c",
# "europe-central2-a",
# "europe-central2-b",
# "europe-central2-c",
# "europe-north1-a",
# "europe-north1-b",
# "europe-north1-c",
# "europe-southwest1-a",
# "europe-southwest1-b",
# "europe-southwest1-c",
# "europe-west1-b",
# "europe-west1-c",
# "europe-west1-d",
# "europe-west10-a",
# "europe-west10-b",
# "europe-west10-c",
# "europe-west12-a",
# "europe-west12-b",
# "europe-west12-c",
# "europe-west2-a",
# "europe-west2-b",
# "europe-west2-c",
# "europe-west3-a",
# "europe-west3-b",
# "europe-west3-c",
# "europe-west4-a",
# "europe-west4-b",
# "europe-west4-c",
# "europe-west6-a",
# "europe-west6-b",
# "europe-west6-c",
# "europe-west8-a",
# "europe-west8-b",
# "europe-west8-c",
# "europe-west9-a",
# "europe-west9-b",
# "europe-west9-c",
# "me-central1-a",
# "me-central1-b",
# "me-central1-c",
# "me-central2-a",
# "me-central2-b",
# "me-central2-c",
# "me-west1-a",
# "me-west1-b",
# "me-west1-c",
# "northamerica-northeast1-a",
# "northamerica-northeast1-b",
# "northamerica-northeast1-c",
# "northamerica-northeast2-a",
# "northamerica-northeast2-b",
# "northamerica-northeast2-c",
# "southamerica-east1-a",
# "southamerica-east1-b",
# "southamerica-east1-c",
# "southamerica-west1-a",
# "southamerica-west1-b",
# "southamerica-west1-c",
# "us-east4-a",
# "us-east4-b",
# "us-east4-c",
# "us-east5-a",
# "us-east5-b",
# "us-east5-c",
# "us-south1-a",
# "us-south1-b",
# "us-south1-c",
# "us-west2-a",
# "us-west2-b",
# "us-west2-c",
# "us-west3-a",
# "us-west3-b",
# "us-west3-c",
# "us-west4-a",
# "us-west4-b",
# "us-west4-c",
]
}