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

variable "environment" {
  default = "prod"
}

variable "application_family" {
  description = "Application family of which this is a component. Used for tagging"
  default     = "devops"
}

variable "team_name" {
  description = "Team name responsible for this component. Used for tagging"
  default     = "devops"
}

variable "service_name" {
  description = "service name, will be used. "
  default     = "royaltyshare-sftp"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "bloomsbury",
    "bloomsburyuk",
    "dtmvadmin",
    "hachetteuk",
    "macmillan",
    "macmillanau",
    "macmillanuk",
    "macmillanauprint",
    "rsbookpub",
    "sage",
    "wiley",
  ]
}

