# General settings
variable "environment" {
  default = "prod"
}

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

variable "application_family" {
  default = "devops"
}

variable "service_name" {
  default = "lambda"
}

variable "team_name" {
  default = "devops"
}

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

locals {
  tags = {
    environment = var.environment
    terraformed = true
  }
}
