Skip to content

Commit

Permalink
chore: Added MX records in the example code (#112)
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Babenko <[email protected]>
  • Loading branch information
bikeidaho and antonbabenko authored Oct 8, 2024
1 parent 3261326 commit c887c23
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,18 @@ module "records" {
zone_id = module.s3_bucket.s3_bucket_hosted_zone_id
}
},
{
name = ""
type = "MX"
ttl = 3600
records = [
"1 aspmx.l.google.com",
"5 alt1.aspmx.l.google.com",
"5 alt2.aspmx.l.google.com",
"10 alt3.aspmx.l.google.com",
"10 alt4.aspmx.l.google.com"
]
},
{
name = "geo"
type = "CNAME"
Expand Down

0 comments on commit c887c23

Please sign in to comment.