Skip to content

Commit

Permalink
Add route for Federalist web application
Browse files Browse the repository at this point in the history
This commit adds a DNS configuration for federalist.18f.gov and federalist-builder.18f.gov. These apps are now behind CloudFront distributions, similar to Dolores.
  • Loading branch information
jmhooper committed Apr 21, 2017
1 parent 256655d commit 403f67d
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion terraform/18f.gov.tf
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,22 @@ resource "aws_route53_record" "18f_gov_dolores_staging_18f_gov_cname" {
records = ["d9d5ti9w8z48u.cloudfront.net"]
}

resource "aws_route53_record" "18f_gov_federalist_18f_gov_cname" {
zone_id = "${aws_route53_zone.18f_gov_zone.zone_id}"
name = "federalist.18f.gov."
type = "CNAME"
ttl = 60
records = ["d189ghshxys967.cloudfront.net"]
}

resource "aws_route53_record" "18f_gov_federalist-builder_18f_gov_cname" {
zone_id = "${aws_route53_zone.18f_gov_zone.zone_id}"
name = "federalist-builder.18f.gov."
type = "CNAME"
ttl = 60
records = ["deej5fwwloisy.cloudfront.net"]
}

resource "aws_route53_record" "18f_gov_federalist-docs_18f_gov_cname" {
zone_id = "${aws_route53_zone.18f_gov_zone.zone_id}"
name = "federalist-docs.18f.gov."
Expand Down Expand Up @@ -403,7 +419,7 @@ resource "aws_route53_record" "18f_gov_handbook_18f_gov_a" {
type = "CNAME"
ttl = 300
records = ["dtj4n4imxei9y.cloudfront.net"]
}
}

resource "aws_route53_record" "18f_gov_jobs_18f_gov_cname" {
zone_id = "${aws_route53_zone.18f_gov_zone.zone_id}"
Expand Down

0 comments on commit 403f67d

Please sign in to comment.