# General settings
variable "environment" {
  description = "Name of the environment, e.g. dev, qa, prod"
  default     = "qa"
}

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

variable "application_family" {
  default = "devops"
}

variable "service_name" {
  default = "terraform-lambda"
}

variable "team_name" {
  default = "devops"
}

variable "vpc_ids" {
  default = [
    "vpc-7f0e841a",
    "vpc-0d77e477e6712e351",
  ]
}

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