Skip to content

Commit

Permalink
Add cname for marche.python.it
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno committed Oct 25, 2024
1 parent ece8578 commit 706a8d0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion infrastructure/global/domains/python_it/records.tf
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,14 @@ resource "aws_route53_record" "bari_cname" {
ttl = "3600"
}

resource "aws_route53_record" "marche_cname" {
zone_id = aws_route53_zone.pythonit.id
name = "marche.python.it"
type = "CNAME"
records = ["cname.vercel-dns.com."]
ttl = "3600"
}

resource "aws_route53_record" "torino_cname" {
zone_id = aws_route53_zone.pythonit.id
name = "torino.python.it"
Expand Down Expand Up @@ -527,4 +535,3 @@ resource "aws_route53_record" "support_store_python_it_mx" {
records = ["10 mx1.improvmx.com.", "20 mx2.improvmx.com."]
ttl = "3600"
}

0 comments on commit 706a8d0

Please sign in to comment.