variable "environment" {
  default = "prod"
}

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

variable "application_family" {
  default = "devops"
}

variable "service_name" {
  default = "lambda"
}

variable "vpc_name" {
  description = "VPC name to deploy resources."
  type        = string
  default     = "networking-terraform-aws-vpc"
}
