variable "environment" {
  description = "Environment, e.g. dev, qa, prod"
  default     = "dev"
}

variable "service_name" {
  type        = map(string)
  description = "Name of service. Pulls value depending on region in which endpoint is being created."
  default = {
    us-east-1 = "com.amazonaws.vpce.us-east-1.vpce-svc-0172c4b1d11bfe606"
    us-west-2 = "com.amazonaws.vpce.us-west-2.vpce-svc-03b918daafad0383b"
  }
}

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

variable "subnet_ids" {
  type        = list(string)
  description = "A list of subnet IDs to associate with the VPC endpoint"
}

variable "vpc_id" {
  description = "VPC in which to create the endpoint"
}
