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

variable "environment" {
  default = "dev"
}

variable "vpc_security_group_ids" {
  default = ["sg-351b5751"]
}

variable "vpc_subnet_ids" {
  default = ["subnet-b649dfef", "subnet-44c19a21"]
}
variable "service_name" {
  default = "jpenner-ecr-lambda"
}

variable "lambda_zip_location" {
  description = "location of the placeholder lambda zip file"
  default     = "./lambda.zip"
}
