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

variable "environment" {
  default = "qa"
}

variable "service_name" {
  default = "app-name"
}

variable "secret_name" {
  default = "IMPORTANT_SECRET_NAME"
}

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

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