variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "prod"
}

variable "application_family" {
  default = "fansifter"
}

variable "theorchard_domain_name" {
  type    = string
  default = "theorchard.com"
}

variable "sendgrid_dns_records" {
  type = list(object({
    type     = string
    name     = string
    value    = string
    priority = optional(number)
  }))
  default = [
    // Fansifter-TheOrchard
    { type = "CNAME", name = "url8289.fans.theorchard.com", value = "sendgrid.net" },
    { type = "CNAME", name = "36739990.fans.theorchard.com", value = "sendgrid.net" },
    { type = "CNAME", name = "em1716.fans.theorchard.com", value = "u36739990.wl241.sendgrid.net" },
    { type = "TXT", name = "em1716.fans.theorchard.com", value = "v=spf1 include:%%{i}._ip.%%{h}._ehlo.%%{d}._spf.vali.email -all" },
    { type = "TXT", name = "_dmarc.fans.theorchard.com", value = "v=DMARC1; p=none; rua=mailto:dmarc_agg@vali.email" },
    { type = "CNAME", name = "s1._domainkey.fans.theorchard.com", value = "s1.domainkey.u36739990.wl241.sendgrid.net" },
    { type = "CNAME", name = "s2._domainkey.fans.theorchard.com", value = "s2.domainkey.u36739990.wl241.sendgrid.net" },
    { type = "NS", name = "_domainkey.fans.theorchard.com", value = "ns.vali.email" },
    { type = "A", name = "o2.ptr4626.fans.theorchard.com", value = "159.183.18.124" },
    { type = "A", name = "o3.ptr2756.fans.theorchard.com", value = "159.183.18.130" },
    { type = "TXT", name = "em1716.fans.theorchard.com", value = "google-site-verification=u8nTv9pVjqCyUd_0GlZCJ48g_a6c4TMIOo6t156gWRs" },
    { type = "TXT", name = "fans.theorchard.com", value = "google-site-verification=u8d9n4XZcGo9WsPV6obqMHXaokv0T0R1_MXpXQMdQuQ" },
    { type = "TXT", name = "fans.theorchard.com", value = "yahoo-verification-key=FR4noy3s/WHYvSovi0isnN9X8USszjecCtd+E+dxkjE=" },
    { type = "TXT", name = "fans.theorchard.com", value = "yahoo-verification-key=s8Cny+qGeOVKWUg2za9Zflo62Z1pBllEz1iOdRx+FRs=" },

    { type = "MX", name = "reply.fans.theorchard.com", value = "mx.sendgrid.net", priority = 10 },
  ]
}
