variable "aws_region" {
  description = "AWS region."
  type        = string
  default     = "us-east-1"
}

variable "environment" {
  description = "Available values: dev, qa, prod."
  type        = string
  default     = "dev"
}

variable "service_name" {
  description = "Name of service."
  type        = string
  default     = "service1"
}

variable "application_family" {
  description = "Application family to which this service belongs."
  type        = string
  default     = "family1"
}

variable "vpc_id" {
  description = "VPC ID to run services in."
  type        = string
  default     = "vpc-34dbfd51"
}

variable "vpc_subnet_ids" {
  description = "VPC Subnet IDs to run services in."
  type        = list(string)
  default     = ["subnet-b649dfef", "subnet-44c19a21"]
}

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