variable "aws_region" {
  default = "us-east-1"
}

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "business-solutions-fivetran-proxy"
}

variable "application_family" {
  default = "devops"
}

variable "team_name" {
  default = "devops"
}

locals {
  tags = {
    Name         = "${var.environment}-${var.service_name}"
    environment  = var.environment
    service_name = var.service_name
    terraformed  = true
  }
}

variable "rds_instances" {
  description = "List of RDS instances that the proxy will connect to"
  type        = list(string)
  default = [
    "prod-youtube-audit.cluster-cxjb9b6f38ml.us-east-1.rds.amazonaws.com:3306",
  ]
}

variable "sshd_host_fingerprints_secret_names" {
  type = list(string)
  default = [
    "SSH_HOST_RSA_KEY",
    "SSH_HOST_ECDSA_KEY",
    "SSH_HOST_ED25519_KEY",
    "SSH_HOST_RSA_KEY_PUB",
    "SSH_HOST_ECDSA_KEY_PUB",
    "SSH_HOST_ED25519_KEY_PUB",
  ]
}
