git and nix-cache dns records

This commit is contained in:
Gabriel Simmer 2023-08-05 12:02:57 +01:00
parent fefb270ae3
commit 68aa75200a
Signed by: arch
SSH key fingerprint: SHA256:mXaHIY3tLtudNyb+i3qRd0DeXvpqbst04OgVKVCp2R4

View file

@ -2,6 +2,22 @@ resource "aws_route53_zone" "gmemca" {
name = "gmem.ca"
}
resource "aws_route53_record" "git" {
zone_id = aws_route53_zone.gmemca.zone_id
name = "git"
type = "A"
ttl = 300
records = ["141.147.94.210"]
}
resource "aws_route53_record" "nix-cache" {
zone_id = aws_route53_zone.gmemca.zone_id
name = "nix-cache"
type = "A"
ttl = 300
records = ["141.147.94.210"]
}
resource "aws_route53_record" "fursona" {
zone_id = aws_route53_zone.gmemca.zone_id
name = "fursona"