variable aws_region {
  default     = "us-east-1"
  description = "AWS region"
}

variable environment {
  description = "Available values:  dev, qa, prod."
  default     = "dev"
}

variable "service_name" {
  default = "timed-release"
}

variable "application_family" {
  default = "vector"
}

variable "vpc_subnet_ids" {
  type        = list(string)
  description = "VPC subnet IDs where the lambdas will execute"
  default     = ["subnet-b649dfef", "subnet-44c19a21"]
}