variables.tf 1023 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. variable "profile" {
  2. description = "The AWS profile to use"
  3. }
  4. variable "region" {
  5. description = "The AWS region to run in"
  6. }
  7. variable "common-tags" {
  8. type = map(string)
  9. description = "Tags that go everywhere"
  10. }
  11. variable "open-nets" {
  12. type = list
  13. description = "CIDRs that will have access to everything"
  14. }
  15. variable "vpc-cidr" {
  16. description = "The CIDR of the VPC"
  17. }
  18. variable "vpc-id" {
  19. description = "The ID of the VPC"
  20. }
  21. variable "vpc-name" {
  22. description = "The Name of the VPC"
  23. }
  24. variable "vpc-subnets" {
  25. type = list
  26. description = "The list of subnets available to the VPC"
  27. }
  28. variable "vpc-azs" {
  29. type = list
  30. description = "The ID of the VPC"
  31. }
  32. variable "data-node-count" {
  33. description = "The number of RE data nodes"
  34. default = 3
  35. }
  36. variable "re-instance-type" {
  37. description = "The size of instance to run"
  38. default = "t2.2xlarge"
  39. }
  40. variable "re-volume-size" {
  41. description = "The size of the two volumes to attach"
  42. default = "150"
  43. }