-
Notifications
You must be signed in to change notification settings - Fork 18
/
records.nycmeshconnect.com.tf
53 lines (46 loc) · 1.32 KB
/
records.nycmeshconnect.com.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
# Pointed to github pages
# https://github.com/nycmeshnet/connect-redirect
resource "namedotcom_record" "A_108" {
domain_name = "nycmeshconnect.com"
host = ""
record_type = "A"
answer = "185.199.108.153"
}
resource "namedotcom_record" "A_109" {
domain_name = "nycmeshconnect.com"
host = ""
record_type = "A"
answer = "185.199.109.153"
}
resource "namedotcom_record" "A_110" {
domain_name = "nycmeshconnect.com"
host = ""
record_type = "A"
answer = "185.199.110.153"
}
resource "namedotcom_record" "A_111" {
domain_name = "nycmeshconnect.com"
host = ""
record_type = "A"
answer = "185.199.111.153"
}
resource "namedotcom_record" "nycmeshconnect_com_www_cname" {
domain_name = "nycmeshconnect.com"
host = "www"
record_type = "CNAME"
answer = "nycmeshnet.github.io"
}
# Authoritative DNS server at SN3
resource "namedotcom_record" "nycmesh-713-dns-auth-3-nycmeshconnect-com" {
domain_name = "nycmeshconnect.com"
host = "nycmesh-713-dns-auth-3"
record_type = "A"
answer = "199.170.132.47"
}
# Authoritative DNS server at SN10
resource "namedotcom_record" "nycmesh-10-dns-auth-5-nycmeshconnect-com" {
domain_name = "nycmeshconnect.com"
host = "nycmesh-10-dns-auth-5"
record_type = "A"
answer = "23.158.16.23"
}