# Generic variables
variable "environment" {
  description = "Environment name, e.g dev/qa/prod"
  default     = "dev"
}

variable "service_name" {
  description = "Name of service"
}

# DB variables
variable "db_access_cidr_blocks" {
  type        = "list"
  description = "CIDR blocks for DB access"
  default     = []
}

variable "vpc_id" {
  description = "ID of VPC"
  default     = ""
}
