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

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "notion"
}

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

variable "secrets_manager_secret_names" {
  type    = set(string)
  default = [
    "NOTION_API_KEY",
    ]
}
