variable "aws_region" {
  default     = "us-east-1"
  description = "All elements of the state machine execution flow have to be placed in the same region."
}

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

variable "service_name" {
  default = "ows-pypi-server"
}

variable "application_family" {
  default = "devops"
}

variable "team_name" {
  type    = string
  default = "devops"
}

# Prefix lists for LB access
variable "prefix_lists_to_allow_ingress_to_lb" {
  type = set(string)
  default = [
    "dev-orcd-private-subnet-prefix-list",
    "prod-orcd-private-subnet-prefix-list",
    "uat-accounting-private-subnet-prefix-list",
    "vpn-ny",
    "vpn-ny-users",
  ]
}
