variable "environment" {
  default = "prod"
}

variable "aws_stack_name" {
  default = "jenkins-aws-task"
}

variable "vpc_name" {
  description = "VPC name to deploy resources."
  type        = string
  default     = "prod"
}

variable "asg_suspended_processes" {
  type = list(string)
  default = [
    "HealthCheck",
    "ReplaceUnhealthy",
  ]
}

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "devops"
}

variable "prefix_lists_to_allow_ssh" {
  type        = set(string)
  description = "List of prefix lists to allow SSH access from"
  default = [
    "shared-orcd-scheduler-jenkins-private-subnet-prefix-list",
    "vpn-ny",
    "vpn-ny-users",
  ]
}
