variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

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

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "devops"
}

variable "team_name" {
  type        = string
  description = "Datadog team name"
  default     = "devops"
}

variable "domain_name" {
  description = "Name of domain"
  default     = "smedx.net"
}

variable "acm_dns_validation_records" {
  description = "DNS records used for ACM validation of *.smedx.net certificates in additional AWS accounts"
  type = map(object({
    records = list(string)
  }))
  default = {
    "_3129265087981483453fb4ed3621e72a.smedx.net." = {
      records = ["_b80df31056986b587c4a763e6f0d5210.jkddzztszm.acm-validations.aws."] # DX QA
    },
    "_024fbaad252177793045dc590f0e284b.smedx.net." = {
      records = ["_2e06e32b405af0ad78f14c15ffada58d.jkddzztszm.acm-validations.aws."] # DX PROD
    }
  }
}
