variables.tf 326 Bytes
Newer Older
Fred Smith committed
1 2 3 4 5
variable "aws_region" {
	default = "us-east-1"
}
variable "es_domain_name" { }
variable "es_instance_type" {
6 7 8 9
  default = "m3.medium.elasticsearch"
}
variable "es_zone_awareness" {
  default = false
Fred Smith committed
10 11
}
variable "es_instance_count" {
12
  default = "1"
Fred Smith committed
13 14
}
variable "es_ebs_volume_size" {
15
  default = "10"
Fred Smith committed
16 17 18
}
variable "source_ip" { }