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

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "lambda-songwhip"
}

variable "application_family" {
  default = "songwhip"
}

variable "vpc_security_group_ids" {
  type        = list(string)
  description = "Security group IDs for the VPC where the lambdas will execute"
  default     = ["sg-21f1ed44"]
}

variable "vpc_subnet_ids" {
  type        = list(string)
  description = "VPC subnet IDs where the lambdas will execute"
  default     = ["subnet-098b89d0c58c5693a", "subnet-067a6b45b079d7296"]
}


