variable "account_group" {
  description = "Account Group"
  default     = "ecommerce"
}

variable "environment" {
  description = "The name of the environment"
  default     = "qa"
}

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

variable "vpc_routing_destination_prefix_lists" {
  type        = list(string)
  description = "list of prefix lists names that should be routable from the private subnets"
  default = [
    "shared-orcd-private-subnet-prefix-list",
    "vpn-ny",
  ]
}

variable "vpc_flow_logs_bucket" {
  default = "shared-orcd-vpc-logs"
}
