Skip to content

Commit 5ead0bd

Browse files
authored
Merge pull request #279 from kabilar/subdomains
Add DNS records for `notebooks` and `stats` subdomains
2 parents d589d29 + 4aca21a commit 5ead0bd

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

terraform/domain.tf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,22 @@ resource "aws_route53_record" "medit" {
5959
records = ["dandi.github.io."]
6060
}
6161

62+
resource "aws_route53_record" "notebooks" {
63+
zone_id = aws_route53_zone.dandi.zone_id
64+
name = "notebooks"
65+
type = "CNAME"
66+
ttl = "300"
67+
records = ["dandi.github.io."]
68+
}
69+
70+
resource "aws_route53_record" "stats" {
71+
zone_id = aws_route53_zone.dandi.zone_id
72+
name = "stats"
73+
type = "CNAME"
74+
ttl = "300"
75+
records = ["dandi.github.io."]
76+
}
77+
6278
resource "aws_route53_record" "status" {
6379
zone_id = aws_route53_zone.dandi.zone_id
6480
name = "status"

0 commit comments

Comments
 (0)