Private flood, point Terraform to new Fly.io site

This commit is contained in:
Gabriel Simmer 2023-08-15 09:11:31 +01:00
parent cc99932cc5
commit c4f131b8e4
Signed by: arch
SSH key fingerprint: SHA256:mXaHIY3tLtudNyb+i3qRd0DeXvpqbst04OgVKVCp2R4
2 changed files with 28 additions and 5 deletions

View file

@ -21,12 +21,19 @@ resource "aws_route53_record" "gabrielsimmercom-a" {
zone_id = aws_route53_zone.gabrielsimmercom.zone_id
name = "gabrielsimmer.com"
type = "A"
ttl = 300
ttl = 3600
records = [
"185.199.108.153",
"185.199.109.153",
"185.199.110.153",
"185.199.111.153"
"66.241.124.117"
]
}
resource "aws_route53_record" "gabrielsimmercom-aaaa" {
zone_id = aws_route53_zone.gabrielsimmercom.zone_id
name = "gabrielsimmer.com"
type = "AAAA"
ttl = 3600
records = [
"2a09:8280:1::4e:42fd"
]
}

View file

@ -2,6 +2,22 @@ resource "aws_route53_zone" "gmemca" {
name = "gmem.ca"
}
resource "aws_route53_record" "flood" {
zone_id = aws_route53_zone.gmemca.zone_id
name = "flood"
type = "A"
ttl = 3600
records = ["100.116.48.47"]
}
resource "aws_route53_record" "request-media" {
zone_id = aws_route53_zone.gmemca.zone_id
name = "request-media"
type = "A"
ttl = 3600
records = ["100.116.48.47"]
}
resource "aws_route53_record" "git" {
zone_id = aws_route53_zone.gmemca.zone_id
name = "git"