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

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

variable "bucket_name" {
  description = "S3 bucket where ova file is stored"
  default     = "whitehat-sentinel-appliance-ova-import"
}

variable "service_name" {
  default = "whitehat-sentinel-appliance"
}

variable "application_family" {
  default = "devops"
}

variable "health_check_cidr_blocks" {
  description = "List of CIDR blocks to allow access from."
  type        = list(string)
  default = [
    "192.168.32.0/24",
  ]
}

variable "aws_key_name" {
  description = "The name of the AWS key pair to use."
  default     = "orchard_admin"
}

locals {
  tags = {
    Name         = "${var.environment}-${var.service_name}"
    environment  = var.environment
    service_name = var.service_name
    terraformed  = true
  }
}
