variable "region" {
  description = "The AWS resources region"
  default     = "us-east-1"
}
variable "environment" {
  description = "Available values: dev, qa, prod."
  default     = "qa"
}
variable "service_name" {
  description = "The name of the associated application."
  default     = "grps-ingester"
}
variable "name" {
  description = "The name of lambda."
  default     = "shared"
}
variable "application_family" {
  default = "data-platform"
}
variable "team_name" {
  description = "Team name"
  default     = "data-platform"
}
variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "SNOWFLAKE_KEY",
    "DDEX_DB_RW_PASSWORD",
  ]
}
