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

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

variable "service_name" {
  default = "royalty-accounting"
}

variable "rds_db_cluster_parameter_group_name" {
  default = "aurora-mysql80sync"
}

variable "application_family" {
  default     = "accounting"
  description = "Application family to which abacus belongs"
}

variable "additional_tags" {
  default = {
    "map-migrated" = "d-server-02m51bf1hoyfhr"
  }
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "teleport_sync_username",
    "teleport_sync_password"
  ]
}

