diff --git a/terraform/gmem.ca.tf b/terraform/gmem.ca.tf index 0107ed0..10254c8 100644 --- a/terraform/gmem.ca.tf +++ b/terraform/gmem.ca.tf @@ -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"