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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "shared"
}

variable "service_name" {
  type        = string
  description = "The name of the service"
  default     = "jump-box"
}

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

variable "instance_type" {
  type        = string
  description = "The EC2 instance type"
  default     = "t3.large"
}

variable "disk_size" {
  type        = number
  description = "The size of the root volume in GB"
  default     = 50
}

variable "number_of_snapshots_to_retain" {
  description = "Number of EBS snapshots to retain"
  default     = 30
}

variable "time_to_evaluate_snapshot_schedule" {
  description = "The time (24-hour clock) at which snapshot schedules are evaluated"
  default     = "01:00"
}
