variable "aws_region" {
  default = "us-west-2"
}

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "royaltyshare-fivetran-proxy"
}

variable "application_family" {
  default = "devops"
}

variable "team_name" {
  default = "devops"
}

variable "permit_db_hosts" {
  type    = list(string)
  default = [
    "172.31.130.4:3306", # db801
    "172.31.137.19:3306", # db802
  ]
}

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

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