Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add live.nixos.org DNS entry #213

Merged
merged 3 commits into from
Jul 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions terraform/dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,21 @@ locals {
type = "TXT"
value = "v=spf1 include:spf.improvmx.com ~all"
},
zimbatm marked this conversation as resolved.
Show resolved Hide resolved
{
hostname = "live.nixos.org"
type = "TXT"
value = "machine-owner=@bryanhonof provider=hetzner-cloud service=owncast"
},
{
hostname = "live.nixos.org"
type = "A"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is IPv6?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It currently has none. Will add one if this is necessary.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IPv6 is an important part of making sure our services are accessible. We don't have total coverage, but we're trying to support it where possible. Can you check into that?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it should have an IPv6 address now. Don't really have a way of testing it, sorry 😞.

value = "167.235.51.204"
},
{
hostname = "live.nixos.org"
type = "AAAA"
value = "2a01:4f8:c0c:96cc::42"
},
]
}

Expand Down