-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrecords.themesh.nyc.tf
52 lines (45 loc) · 1.27 KB
/
records.themesh.nyc.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
# https://github.com/nycmeshnet/themesh.nyc/blob/main/CNAME
resource "namedotcom_record" "themesh_A_108" {
domain_name = "themesh.nyc"
host = ""
record_type = "A"
answer = "185.199.108.153"
}
resource "namedotcom_record" "themesh_A_109" {
domain_name = "themesh.nyc"
host = ""
record_type = "A"
answer = "185.199.109.153"
}
resource "namedotcom_record" "themesh_A_110" {
domain_name = "themesh.nyc"
host = ""
record_type = "A"
answer = "185.199.110.153"
}
resource "namedotcom_record" "themesh_A_111" {
domain_name = "themesh.nyc"
host = ""
record_type = "A"
answer = "185.199.111.153"
}
resource "namedotcom_record" "themesh_nyc_www_cname" {
domain_name = "themesh.nyc"
host = "www"
record_type = "CNAME"
answer = "nycmeshnet.github.io"
}
# Authoritative DNS server at SN3
resource "namedotcom_record" "nycmesh-713-dns-auth-3-themesh-nyc" {
domain_name = "themesh.nyc"
host = "nycmesh-713-dns-auth-3"
record_type = "A"
answer = "199.170.132.47"
}
# Authoritative DNS server at SN10
resource "namedotcom_record" "nycmesh-713-dns-auth-5-themesh-nyc" {
domain_name = "themesh.nyc"
host = "nycmesh-10-dns-auth-5"
record_type = "A"
answer = "23.158.16.23"
}