-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrecords.tf
More file actions
78 lines (68 loc) · 1.93 KB
/
records.tf
File metadata and controls
78 lines (68 loc) · 1.93 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
resource "dnsimple_record" "root" {
domain = "${var.hosted-zone}"
name = ""
type = "ALIAS"
value = "alias.zeit.co"
ttl = 60
}
resource "dnsimple_record" "www" {
domain = "${var.hosted-zone}"
name = "www"
type = "ALIAS"
value = "alias.zeit.co"
ttl = 60
}
resource "dnsimple_record" "www_txt" {
domain = "${var.hosted-zone}"
name = "_now"
type = "TXT"
value = "Qmd8XawRvuECtFLQm8SytbgcW2PV2jthtfMy7ujLnTN2gL"
}
resource "dnsimple_record" "api" {
domain = "${var.hosted-zone}"
name = "api"
type = "CNAME"
value = "backend.k8s.operationcode.org"
}
resource "dnsimple_record" "staging_api" {
domain = "${var.hosted-zone}"
name = "api.staging"
type = "CNAME"
value = "backend-staging.k8s.operationcode.org"
}
resource "dnsimple_record" "pybot" {
domain = "${var.hosted-zone}"
name = "pybot"
type = "CNAME"
value = "${var.pybot-lb-ingress}"
}
resource "dnsimple_record" "staging_pybot" {
domain = "${var.hosted-zone}"
name = "pybot.staging"
type = "CNAME"
value = "${var.pybot-lb-ingress}"
}
resource "dnsimple_record" "staging_pybot_cert_verification" {
domain = "${var.hosted-zone}"
name = "_69b5c7278c7c13092899e1b67e8de6c1.pybot.staging"
type = "CNAME"
value = "_9fdd906cbd86d545894523f8cd809812.ltfvzjuylp.acm-validations.aws"
}
resource "dnsimple_record" "qa_pybot_cert_verification" {
domain = "${var.hosted-zone}"
name = "_037e6ed502a36d6a457bafe40ec0f7e4.pybot.qa.operationcode.org."
type = "CNAME"
value = "_25bac267a2f0d12eb4cb47a487e276c5.gwpjclltnz.acm-validations.aws."
}
resource "dnsimple_record" "resources_api" {
domain = "${var.hosted-zone}"
name = "resources"
type = "CNAME"
value = "resources.k8s.operationcode.org"
}
resource "dnsimple_record" "resources_staging_api" {
domain = "${var.hosted-zone}"
name = "resources.staging"
type = "CNAME"
value = "resources-staging.k8s.operationcode.org"
}