Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/infra
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c99d93e637c1
Choose a base ref
...
head repository: NixOS/infra
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 71d6360bcff8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 21, 2019

  1. Copy the full SHA
    71d6360 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 terraform/route53.tf
4 changes: 2 additions & 2 deletions terraform/route53.tf
Original file line number Diff line number Diff line change
@@ -147,15 +147,15 @@ resource "aws_route53_record" "nixos-weekly" {
name = "weekly"
type = "CNAME"
ttl = "3600"
records = ["nixos.github.io"]
records = ["nixos-weekly.netlify.com"]
}

resource "aws_route53_record" "nixos-weekly-wild" {
zone_id = "${aws_route53_zone.nixos.zone_id}"
name = "*.weekly"
type = "CNAME"
ttl = "3600"
records = ["nixos.github.io"]
records = ["nixos-weekly.netlify.com"]
}

#resource "aws_route53_record" "nixos-wild" {