generated from 18F/open-source-policy
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathupstream-dns.tf
More file actions
87 lines (73 loc) · 2.33 KB
/
upstream-dns.tf
File metadata and controls
87 lines (73 loc) · 2.33 KB
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
# The NS and DS records for ssb, ssb-staging, and ssb-dev are all actually
# commented out here. They are managed in the data.gov zone, which we modify by
# submitting requests to GSA IT's DNS group.
# However, the expected values are recorded here for completeness and for
# checking against the live values in the data.gov domain.
# production
# resource "aws_route53_record" "ssb-ns" {
# allow_overwrite = true
# name = "ssb"
# ttl = 1800
# type = "NS"
# zone_id = "Z2QMRHTV5AP7G6"
# records = [
# "ns-1147.awsdns-15.org",
# "ns-1786.awsdns-31.co.uk",
# "ns-28.awsdns-03.com",
# "ns-658.awsdns-18.net",
# ]
# }
# resource "aws_route53_record" "ssb-ds" {
# allow_overwrite = true
# name = "ssb"
# ttl = 1800
# type = "DS"
# zone_id = "Z2QMRHTV5AP7G6"
#
# records = ["4862 13 2 F9C2CD8A4F6AF7EFE48A630EE4AD53431636310D1306A7608D27C7B011CA20B9"]
# }
# staging
# resource "aws_route53_record" "ssb-staging-ns" {
# allow_overwrite = true
# name = "ssb-staging"
# ttl = 1800
# type = "NS"
# zone_id = "Z2QMRHTV5AP7G6"
# records = [
# "ns-1148.awsdns-15.org",
# "ns-1937.awsdns-50.co.uk",
# "ns-377.awsdns-47.com",
# "ns-965.awsdns-56.net",
# ]
# }
# resource "aws_route53_record" "ssb-staging-ds" {
# allow_overwrite = true
# name = "ssb-staging"
# ttl = 1800
# type = "DS"
# zone_id = "Z2QMRHTV5AP7G6"
#
# records = ["28358 13 2 7D70709ECEEA84A93A19277C126F2747AB5655A285731F7D31F39E24F4DD5040"]
# }
# development - actually managed in the data.gov domain, but recorded here
# resource "aws_route53_record" "ssb-dev-ns" {
# allow_overwrite = true
# name = "ssb-dev"
# ttl = 1800
# type = "NS"
# zone_id = "Z2QMRHTV5AP7G6"
# records = [
# "ns-1422.awsdns-49.org",
# "ns-1839.awsdns-37.co.uk",
# "ns-297.awsdns-37.com",
# "ns-673.awsdns-20.net"
# ]
# }
# resource "aws_route53_record" "ssb_dev-ds" {
# allow_overwrite = true
# name = "ssb-dev"
# ttl = 1800
# type = "DS"
# zone_id = "Z2QMRHTV5AP7G6"
# records = ["46864 13 2 B834DCEE0727D7864D11E31276F3BDE5B35F7D9744F3BEFF042F21B9FF864E1D"]
# }