Add pydata.it domain zone to global infrastructure#4562
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
93b083d to
4790c16
Compare
|
This PR adds an MX record for Gmail activation on the pydata.it domain. The configuration is minimal for initial setup. Issue Found - Incorrect MX Record: The MX record at infrastructure/global/domains/pydata_it/records.tf:13 uses 'smtp.google.com.' which is incorrect for Gmail/Google Workspace. This is an SMTP server hostname, not a mail exchange server. For Google Workspace/Gmail, the correct MX records should follow the pattern used in pycon.it (see pycon_it/records.tf:10-14):
Impact: Email delivery will fail because 'smtp.google.com' is not a valid MX server. Mail sent to @pydata.it addresses will bounce. Fix Required: Replace the MX record with proper Google Workspace MX servers. The standard configuration is: records = [ Reference: pycon_it/records.tf:9-15 |
Summary
Test plan
terraform planon global infrastructure to verify changes