# General settings
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     = "prod-terraform-aws-vpc"
}

variable "team_name" {
  default = "devops"
}

locals {
  tags = {
    environment    = var.environment
    terraformed    = true
    eiso-exception = "aws.08.30"
  }
}
