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

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "sme-rds-proxy"
}

variable "application_family" {
  default = "devops"
}

variable "team_name" {
  default = "devops"
}

variable "vpc_name" {
  description = "VPC name to deploy resources."
  type        = string
  default     = "qa-graphql-switchboard-vpc"
}

locals {
  tags = {
    environment        = var.environment
    service_name       = var.service_name
    application_family = var.application_family
    terraformed        = true
  }
}

variable "rds_instances" {
  description = "List of RDS instances that the proxy will connect to"
  type        = list(string)
  default = [
    "10.11.113.164:6432", # SME RDS instance
  ]
}

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",
  ]
}

