variable "vpc_private_subnet_cidr" {
  description = "CIDR for private subnets in VPC"
  default     = "10.101.11.0/26"
}

variable "vpc_route_table" {
  description = "Route table id"
  default     = "rtb-1799a272"
}

variable "aws_region" {
  description = "AWS region to launch servers."
  default     = "us-east-1"
}

variable "vpc_id" {
  description = "ID of existing vpc"
  default     = "vpc-34dbfd51"
}

variable "aws_instance_type" {
  description = "EC2 instance type"
  default     = "t2.large"
}

variable "aws_key_name" {
  description = "Desired name of AWS key pair"
  default     = "orcd-dev"
}

variable "aws_stack_name" {
  description = "AWS stack name"
  default     = "ciscat-dashboard"
}

variable "service_port" {
  description = "Tomcat service TCP port"
  default     = "80"
}

variable "asg_max_size" {
  description = "Auto Scaling group max size"
  default     = "1"
}

variable "asg_min_size" {
  description = "Auto Scaling group min size"
  default     = "1"
}

variable "asg_desired_capacity" {
  description = "Auto Scaling group desired capacity"
  default     = "1"
}

variable "db_name" {
  description = "Database name"
  default     = "ciscat"
}

variable "db_password" {
  description = "Database password"
}

variable "db_username" {
  description = "Database username"
  default     = "ciscat"
}

variable "db_instance_class" {
  description = "Size of db instance"
  default     = "db.t2.medium"
}

variable "ciscat_bucket_name" {
  description = "Bucket name for Tomcat Java package"
  default     = "dev-cis-dashboard"
}

variable "environment" {
  description = "Environment type: dev, qa, prod"
  default     = "dev"
}

variable "health_check_path" {
  default     = "/CCPD/"
  description = "The default health check path"
}

variable "chef_server" {
}

variable "dns_name" {
  description = "Name of Route53 CNAME record"
  default     = "ciscat-dashboard"
}

